Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Last active February 12, 2019 21:57
Show Gist options
  • Save Rahiche/9d34a16a9385ce92d832ecd331e15a92 to your computer and use it in GitHub Desktop.
Save Rahiche/9d34a16a9385ce92d832ecd331e15a92 to your computer and use it in GitHub Desktop.
return Scaffold(
appBar: AppBar(title: Text('Flow Layout Flutter')),
body: Center(
child: Container(
color: Colors.teal,
child: Flow(
delegate: SampleFlowDelegate(),
children: <Widget>[
buildItem(0),
buildItem(1),
buildItem(2),
buildItem(3),
buildItem(4),
buildItem(5),
buildItem(6),
],
),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment