SingleChildScrollView is not working in Flutter. What to do?

Replace

body: SingleChildScrollView(child: Container(),),

By

body: ScrollConfiguration(behavior: ScrollBehavior()..buildViewportChrome(context, null, AxisDirection.down),child: SingleChildScrollView(child: Container(
height: MediaQuery.of(context).size.height,
),),),

Make sure , you are using ScrollConfiguration in a stateful widget.

And you are Done!

--

--

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store