Created
January 24, 2023 12:23
-
-
Save marenovakovic/3973eb163606ed2a0189af194d402ec0 to your computer and use it in GitHub Desktop.
F# Flutter app MyApp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type MyApp(?key: Key) = | |
inherit StatelessWidget(?key = key) | |
override _.build(context) = | |
MaterialApp(title = "Hello from F#!", home = ElmishWidget.From(init, update, view)) | |
let main () = MyApp() |> runApp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment