今天在使用 react-native-modalbox 上放置了textInput 发现有如下的问题(固定了Modal的height) Modal在键盘消失的时候会滚出屏幕 开始以为是Modal的height问题 后来固定了height还是有这个问题. 我找到了github的issue发现有开发者遇到了同样的问题,并且已经提出解决的代码等待merge https://github.com/maxs15/react-native-modalbox/pull/160/files
var keyboardFrame = evt.endCoordinates; var keyboardHeight = this.state.containerHeight - keyboardFrame.screenY; // this.state.keyboardOffset = keyboardHeight; this.state.keyboardOffset = this.props.position === 'top' || keyboardHeight > 0 ? keyboardHeight : 0; this.animateOpen(); },
处理的方式 将源代码fork了一份到自己的仓库 然后修改了此处的代码 提交更新 通过npm install git的地址 --save 来安装自己的包 解决~
git的地址