Created
September 16, 2020 14:10
-
-
Save h4p/aeb019888f3a99b2297414217dde159e to your computer and use it in GitHub Desktop.
Flutter - Bare Bones App
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
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