Created
June 5, 2019 19:19
-
-
Save marcinOz/9fdcc4db57d54104a0a883a2e4795ece 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
Widget build(BuildContext context) { | |
return Column(children: [ | |
Text(mainText), | |
...buildMainElements(), | |
if (page != pages.last) | |
FlatButton(child: Text('Next')), | |
for (var section in sections) | |
HeadingAction(section.heading), | |
]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment