How to make a widget Scrollable in Flutter

Tushar Upadhyay
1 min readMar 19, 2020

Want to make a Widget Scrollable in Flutter ? It’s Easy

Case 1 . If you want to make whole body Scrollable…

In this case Just wrap the body of your Scaffold in a widget named SingleChildScrollView and that’s it .. If your content moves out of the screen it scrolls automatically …

Case 2 . If you Want to make a specific Widget Scrollable..

In this case you can use a ListView if you have a list to render

And that’s it!!

This was my first article on Medium ,hope it helps you in Flutter Development..

--

--