Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apple/examples/ios_app.ml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let mounted_apps = ref []
let window = ref None

let install_root_window _app_delegate _application _launch_options =
let app = App.create Xxx.Ios_demo_app.component in
let app = App.create Bonsai_apple_examples.Ios_demo_app.component in
App.flush_and_render app;
let root =
match App.view app with
Expand Down
2 changes: 1 addition & 1 deletion apple/examples/mac_app.ml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let mounted_apps = ref []
let window = ref None

let install_root_window _app_delegate _application _launch_options =
let app = App.create Xxx.Ios_demo_app.component in
let app = App.create Bonsai_apple_examples.Ios_demo_app.component in
App.flush_and_render app;
let root =
match App.view app with
Expand Down
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
(description
"A SwiftUI-like declarative native Apple UI framework for OCaml.")
(depends
(ocaml (and (>= 5.1.0) (< 5.3.0)))
(ocaml (>= 5.1.0))
dune
bonsai_native))
Loading