How to Scroll Page in Flutter

Nur Özkaya
Feb 14, 2021

Two way to add Scroll in page:

The first one by using SingleChildScrollView :

SingleChildScrollView(
child: Column(
children: <Widget>[
//Your Widgets
...
],
),
);

And the second one is using ListView .

ListView is default provide scroll no need to add an extra widget for scrolling.

ListView(
children: [
Container(..),
SizedBox(..),
Container(...),
Text(..)
],
),

--

--