Flutter TextEditingController does not scroll above keyboard

后端 未结 4 1637
难免孤独
难免孤独 2021-02-09 19:42

In android version, Flutter TextEditingController does not scroll above keyboard like default text fields do when you start typing in field. I tried to look in sample apps provi

4条回答
  •  生来不讨喜
    2021-02-09 20:37

    so simple

    if your textfields is between 5-10 fields

     SingleChildScrollView(
         reverse: true,  // add this line in scroll view
         child:  ...
    )
    

提交回复
热议问题