Skip to content

Instantly share code, notes, and snippets.

@h4p
Created September 16, 2020 14:10
Show Gist options
  • Save h4p/aeb019888f3a99b2297414217dde159e to your computer and use it in GitHub Desktop.
Save h4p/aeb019888f3a99b2297414217dde159e to your computer and use it in GitHub Desktop.
Flutter - Bare Bones App
import 'package:flutter/widgets.dart';
main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(context) => Center(
child: Text('Hello Flutter!', textDirection: TextDirection.ltr)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment