Skip to content

Instantly share code, notes, and snippets.

@wiccy46
Created August 28, 2019 15:39
Show Gist options
  • Select an option

  • Save wiccy46/8c289321e69df5b59dee1c9f2617e75b to your computer and use it in GitHub Desktop.

Select an option

Save wiccy46/8c289321e69df5b59dee1c9f2617e75b to your computer and use it in GitHub Desktop.
[flutter_filler] Basic filler of a flutter project #dart #flutter
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