본문 바로가기
Flutter

[Flutter] 플러터 - 바텀시트 텍스트 필드 깨짐

by s_hoonee 2024. 6. 4.
반응형

바텀시트 같은 경우에 빌드되는 컴포넌트 SingleChildScrollView를 선언해도 넣어도 우리가 원하는 모양이 아니다.


바텀시트 같은 경우에 빌드되는 컴포넌트 SingleChildScrollView를 선언해도 넣어도 우리가 원하는 모양이 아니다.

isScrollControlled 를 true하고 패딩값에 bottom 부분에 아래를 추가해주자. 원하는 결과가 나올 것이다.

MediaQuery.of(context).viewInsets.bottom + 30.h

padding: EdgeInsets.only(
    left: 20.w, right: 20.w, top: 20.h, bottom: MediaQuery.of(context).viewInsets.bottom + 30.h),