Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Last active December 9, 2018 16:56
Show Gist options
  • Save fabiomsr/db44f74d0240a4d3254faf217ec884fa to your computer and use it in GitHub Desktop.
Save fabiomsr/db44f74d0240a4d3254faf217ec884fa to your computer and use it in GitHub Desktop.
Flutter hello world
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: Text("Hello, World!")
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment