Something I encounter alot is creating a scrollable column with space between items.
SingleChildScrollView(child:
Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: ...))
This doesn't work unless you give the Column a fixed height.
ListViews don't set space between.
What is the best way to do this? Appreciate if someone can advise. Thank you in advance!