TextField 多行输入时 、在ios端 会出现无法收起键盘的问题,可以使用触摸监听并收起键盘。

使用Listener监听当前页面

Listener(
  onPointerDown: (onPointerDown){
        print('手指按下回调');
   },
  onPointerMove: (onPointerMove){
        // 触摸收起键盘
        FocusScope.of(context).requestFocus(FocusNode());
        print('手指移动回调');
   },
  onPointerUp: (onPointerUp){
        print('手指抬起回调');
   },
// 当前页面
  child: Container(
     child: Text('Listener监听的使用')
  )
);

 

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐