Skip to content

Instantly share code, notes, and snippets.

@agarasul
Created July 19, 2019 15:08
Show Gist options
  • Save agarasul/8d808144076e3565cdfd077051a66a73 to your computer and use it in GitHub Desktop.
Save agarasul/8d808144076e3565cdfd077051a66a73 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(
child: ListView.builder(
itemCount: 5,
itemBuilder: (context, index) => ListItem(),
)),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment