xxxxxxxxxx
Simply wrap your "SingleChildScrollView" widget with "Expanded" widget and it will work
:)
Widget build(BuildContext context) =>
Scaffold(
body: Column(
children: <Widget>[
Container( ),
// Here... Wrap your "SingleChildScrollView" with "Expanded"
Expanded(
child: SingleChildScrollView(
child: Container( ),
),
),
],
),
);