https://pub.dev/packages/modal_bottom_sheet
flutter pub add modal_bottom_sheet
isScrollControlled 속성의 값을 true로 설정해야 기본 높이보다 크게 설정할 수 있다.
void showLongHeightModalBottomSheet(BuildContext context) {
showModalBottomSheet(
context: context,
// isScrollControlled를 true로 설정한다.
isScrollControlled: true,
builder: (BuildContext context) {
return Container(
height: MediaQuery.of(context).size.height * 0.8,
);
},
);
}