Flutter 输入框弹出软键盘失效的问题

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/hao_m582/article/details/84037950

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

后续

谷歌会修复这个问题

猜你喜欢

转载自blog.csdn.net/hao_m582/article/details/84037950