Skip to content

Instantly share code, notes, and snippets.

@marenovakovic
Created January 24, 2023 12:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marenovakovic/3973eb163606ed2a0189af194d402ec0 to your computer and use it in GitHub Desktop.
Save marenovakovic/3973eb163606ed2a0189af194d402ec0 to your computer and use it in GitHub Desktop.
F# Flutter app MyApp
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