Skip to content

Instantly share code, notes, and snippets.

@agarasul
Last active July 19, 2019 14:54
Show Gist options
  • Save agarasul/4e4370d972bd15764e4d431f311490e7 to your computer and use it in GitHub Desktop.
Save agarasul/4e4370d972bd15764e4d431f311490e7 to your computer and use it in GitHub Desktop.
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Container(
alignment: Alignment.topCenter,
child: ListView(
children: <Widget>[],
)),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment