본문 바로가기
개발/Flutter

flutter bottomsheet height 변경 안 될 때(height 변경하기)

by dev_caleb 2023. 6. 2.
728x90

flutter에서 bottomsheet 오랜만에 쓰려니 height가 적용이 안되는 것 같았다. 

 

이래저래 찾아보니 sizebox로 감싸서 사이즈 수정하면 된다고 하는데 내가 했을 때는 잘 안되었다. 

 

 

해답은 이것이었다. 

 

https://stackoverflow.com/questions/64049624/flutter-modal-bottom-sheet-full-height

 

Flutter modal bottom sheet full height

I was trying things out with ModalBottomSheet. How can I achieve 90% height of device screen size for modal sheet. I did mediaquery but still it does not give me more than half of the screen size. ...

stackoverflow.com

 

height를 MediaQuery를 사용하건, 또는 SizedBox를 사용하건, 아니면 Column으로 해서 자동으로 size가 입력 되건, 

상관 없이 중요한 건 

 

꺾이지 않는 마음.. 이 아니라 

 

중요한 건

 

isScrollControlled: true,

 

이 코드가 들어가있어야한다!

 

 

728x90

'개발 > Flutter' 카테고리의 다른 글

In App 결제 기능 구축(2)  (0) 2023.06.04
불필요한 console log print 가리기  (0) 2023.06.02
In App 결제 기능 구축(1)  (0) 2023.05.30
GetX reative statemanagement에서 class 변경  (0) 2023.05.30
getX debounce  (0) 2023.05.29