Flutter踩坑小能手1:登录界面的Textfile的overflow解决

问题:

登录界面在ios是好的,在安卓界面会出现overflow的问题。

答案:

利用SafeArea可以让内容显示在安全的可见区域。 利用SingleChildScrollView可以避免弹出键盘的时候,出现overFlow的现象。

代码示例:

 

return new Scaffold(
  body:new SafeArea(child: new SingleChildScrollView(//SingleChildScrollview,避免弹出键盘的时候出现overFlow,
    child: new Container(
      height: MediaQuery.of(context).size.height,
      width: MediaQuery.of(context).size.width,
      decoration:new  BoxDecoration(
    
        ),
      ),),),

你可能感兴趣的:(flutter,flutter,textfile)