Flutter : ModalBottomSheet 높이 조절

한지선·2023년 7월 1일
0

Flutter

목록 보기
6/7

ModalBottomSheet()

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,
      );
    },
  );
}
profile
어플 개발에 관심있습니다람쥐썬더!

0개의 댓글