본문 바로가기
Flutter/- Useful Code

[Appbar] appbar height 알아내는 법

by 고고 뜌지 2022. 12. 14.

현재 개발중인 변환기에서  keyboard_actions 라이브러리의 keyboardActions 클래스를 적용중이 있는데 

"RenderFlex children have non-zero flex but incoming height constraints are unbounded"

해당 에러가 발생했다.... ㅠ

 

확인 결과 height 를 못찾아서 생긴 에러라고는 하는데 확인해보니 cloumn 의 expanded 를 사용해서 생긴 현상이답

아무리 해도 안되스 포기하고 Container 에서 height 를 주는 방향으로 틀었다... ㅠㅠ

 

> scaffold 의 높이 ( 디바이스의 높이)

MediaQuery.of(context).size.height

 

> appbar 의 총 높이 

Scaffold.of(context).appBarMaxHeight

 

> 이부분은 해당 노란색 부분을 제외하고 나타내는 appbar 높이

AppBar().preferredSize.height

 

댓글