본문 바로가기
ETC/Flutter

[flutter] Bottom Overflowed By ??? Pixels 오류 해결

by 안주형 2021. 11. 23.

 해결방법

Scaffold에 resizeToAvoidBottomPadding:false 를 추가하고 body를 SingleChildScrollView로 감싼다.

home: Scaffold(
          resizeToAvoidBottomInset : false,
          appBar: AppBar(
            title: Text("Registration Page"),
          ),
          body: SingleChildScrollView(
            child: RegisterUserPage(),
          )),

 

참고

 

Flutter - Bottom Overflowed By 119 Pixels

I had an error "Bottom Overflowed by 199 pixel" when creating an Image inside the ListView, and after i google it, all of them suggest me to add: resizeToAvoidBottomPadding: false But, it doesnt ...

stackoverflow.com

 

댓글