xxxxxxxxxx
SingleChildScrollView(
child: ConstrainedBox(
constraints: BoxConstraints(
height: MediaQuery.of(context).size.height,
),
child: Container(
//contents of container
),
),
),
xxxxxxxxxx
//Warp singlechildscrollview with container and give height : double.infinity
return Container(
height: double.infinity,
child: Singlechildscrollview(..)
)