-
Flutter) 안드로이드 빌드시 status bar에 화면 겹치는 현상 해결하기Programing Language/Flutter(Dart) 2021. 12. 30. 12:12728x90반응형
예시
해결방법
body 안에 SafeArea 함수를 사용한다./* In this situation, it will render "Hello" under the status bar. You can fix this by wrapping your body into a SafeArea : */ Scaffold( body: SafeArea( child: Text("Hello"), ), ),
참고 url : https://stackoverflow.com/questions/51673434/flutter-toolbar-overlapping-below-status-bar
도움되셨다면 하단의 광고 클릭 부탁드립니다 :)
728x90반응형'Programing Language > Flutter(Dart)' 카테고리의 다른 글
Flutter) VSCode에서 에뮬 환경 사용하기 (0) 2022.01.29 Flutter) 플루터로 하이브리드 웹앱 만들기 (0) 2021.12.30 Flutter) Debug 모드 Release 모드 체크 하기(참고자료) (0) 2021.03.21 Flutter) Android Release로 업로드하기! (0) 2021.03.21 Flutter) 구글 광고 달기 (AdMob) [참고자료] (0) 2021.03.21