Skip to content

Instantly share code, notes, and snippets.

@hjJunior
Created December 10, 2018 15:37
Show Gist options
  • Save hjJunior/7ba76c2fe5d3321657549957bae93ba9 to your computer and use it in GitHub Desktop.
Save hjJunior/7ba76c2fe5d3321657549957bae93ba9 to your computer and use it in GitHub Desktop.
...
@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