Skip to content

Instantly share code, notes, and snippets.

@shubie
Last active April 18, 2019 19:00
Show Gist options
  • Save shubie/70cdcb3a01ef1970b7923d0787fa2b3e to your computer and use it in GitHub Desktop.
Save shubie/70cdcb3a01ef1970b7923d0787fa2b3e to your computer and use it in GitHub Desktop.
class Home extends StatefulWidget {
@override
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("DEPENDENT DROPDOWN"),
elevation: 0.1,
),
body: SafeArea(child: Container()));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment