Created
December 10, 2018 15:37
-
-
Save hjJunior/7ba76c2fe5d3321657549957bae93ba9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
@override | |
Widget build(BuildContext context) => Scaffold( | |
appBar: AppBar( | |
centerTitle: true, | |
title: Text('Top Beers'), | |
), | |
body: ListView.builder( | |
itemCount: _beers.length, | |
itemBuilder: (context, index) => BeerTile(_beers[index]), | |
), | |
); | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment