Created
August 28, 2019 15:39
-
-
Save wiccy46/8c289321e69df5b59dee1c9f2617e75b to your computer and use it in GitHub Desktop.
[flutter_filler] Basic filler of a flutter project #dart #flutter
This file contains hidden or 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/material.dart'; | |
| void main() => runApp(MaterialApp( | |
| home: MyApp(), | |
| )); | |
| class MyApp extends StatefulWidget { | |
| @override | |
| _MyAppState createState() => new _MyAppState(); | |
| } | |
| class _MyAppState extends State<MyApp>{ | |
| @override | |
| Widget build(BuildContext context) { | |
| // Return something here. | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment