Вот попробуйте это, я думаю, это то, что вы ищете
//This should be one of the first lines in your build function
Size size = MediaQuery.of(context).size;
RaisedButton(
child: Text('Show Bottom Modal'),
onPressed: () => showModalBottomSheet(
isScrollControlled: true,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30)),
context: context,
builder: (context) => Container(
color: Colors.amber,
height: size.height,
),
),
)
Дайте мне знать, как это работает для вас