Skip to content

Instantly share code, notes, and snippets.

@Temidtech
Created April 14, 2018 00:03
Show Gist options
  • Save Temidtech/ad9f54e317670191281e5761f1864bf5 to your computer and use it in GitHub Desktop.
Save Temidtech/ad9f54e317670191281e5761f1864bf5 to your computer and use it in GitHub Desktop.
main3 Dart File
Widget build(BuildContext context) {
List<Widget> remaining = widget.items.sublist(_done);
return new Scaffold(
body: (remaining.length <= 3)
? new Column(children: remaining)
: new Text('${remaining.length} items left to do'),
floatingActionButton: new FloatingActionButton(onPressed: _doOneThing),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment