Flutter - The screen is not scrolling
Columns don't scroll. Try replacing your outer Column with a ListView. You may need to put shrinkWrap: true
on it.
To make a column scrollable, simply wrap it in a SingleChildScrollView.
Columns don't scroll. Try replacing your outer Column with a ListView. You may need to put shrinkWrap: true
on it.
To make a column scrollable, simply wrap it in a SingleChildScrollView.