How To Make A Column Scrollable In Flutter

[Solved] How To Make A Column Scrollable In Flutter | Dart - Code Explorer | yomemimo.com
Question : how to make a column scrollable in flutter

Answered by : breakable-baboon-md4fm5tl6l6b

return new Container( child: new SingleChildScrollView( child: new Column( children: <Widget>[ _showChild1(), _showChild2(), ... _showChildN() ] ) )
);

Source : https://stackoverflow.com/questions/52053850/flutter-how-to-make-a-column-screen-scrollable | Last Update : Tue, 29 Sep 20

Question : flutter scrollable columne

Answered by : snippets

return Expanded( child: SingleChildScrollView( child: Column( children: [ _child1(), _child2() ] ) )
);

Source : | Last Update : Wed, 19 Jan 22

Answers related to how to make a column scrollable in flutter

Code Explorer Popular Question For Dart