Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nitishk72/06a56bd38c8bc78eb426e045116c6a76 to your computer and use it in GitHub Desktop.
Save nitishk72/06a56bd38c8bc78eb426e045116c6a76 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: new Text('Drop Down App'),
),
body: new Center(
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment