登录 注册
当前位置:主页 > 资源下载 > 10 > 当键盘弹起时,react-native-hide-with-keyboard:作为一个环绕组件来隐藏它们

当键盘弹起时,react-native-hide-with-keyboard:作为一个环绕组件来隐藏它们

  • 更新:2024-10-06 14:01:27
  • 大小:52KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

显示键盘时隐藏组件 设备屏幕很小,特别是当键盘占用一半的空间时,例如在处理表单时。 最好的处理方法之一是在键盘显示时隐藏部分视图。 安装它 npm install -S react-native-hide-with-keyboard 用它 import HideWithKeyboard from 'react-native-hide-with-keyboard' ; ... render ( ) { return ( < View> < HideWithKeyboard> < Text> Hidden when keyboard is shown < / Text > < / HideWithKeyboard > < Text> Never hidden < / Text > < /