TextField TextFormField
场景
当我们使用TextField TextFormField 点击 widget 时会自动弹出软键盘正常的事件
问题
点击 TextField 在定位API 28 时不会显示屏幕键盘,但在定位API 27时会显示
解决问题
Issues
https://github.com/flutter/flutter/issues/19644
Targeting API 28 doesn’t bring up keyboard for TextField (API 27 does) #19644
方法
对Android 模块的build.gradle文件中的SDK 进行降级处理
compileSdkVersion 28 <---- changed this from 27
targetSdkVersion **28** <---- Doesnt work with 28 but does with 27
后续
谷歌会修复这个问题