react-native – React Native“interactive”keyboardDismissMode在拖动时抛出错误

前端之家收集整理的这篇文章主要介绍了react-native – React Native“interactive”keyboardDismissMode在拖动时抛出错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
错误是:RCTLayoutAnimationGroup期望时间以毫秒为单位,而不是秒

当我快速向下拖动键盘时会发生这种情况.有时候这种情况会发生;有时它没有.

我在KeyboardAvoidingView中使用一个简单的TextInput组件

向您的ScrollView添加退回= {false}似乎可以解决问题.
  1. <ScrollView keyboardDismissMode="interactive" bounces={false}>

它稍微改变了行为但是,错误似乎不再出现了.

我想如果你想保持ScrollView的’弹性’行为,最好的方法是让’弹跳’依赖于键盘节目.显示键盘时,弹跳设置为false.看看我的示例组件:

  1. export default class App extends Component<Props> {
  2.  
  3. constructor(){
  4. super();
  5. this.state = {
  6. bounces: true
  7. }
  8. this.keyboardDidHideListener = Keyboard.addListener('keyboardDidHide',this._keyboardDidHide.bind(this));
  9. this.keyboardDidShowListener = Keyboard.addListener('keyboardDidShow',this._keyboardDidShow.bind(this));
  10. }
  11.  
  12. _keyboardDidShow(){
  13. this.setState({bounces: false});
  14. }
  15.  
  16. _keyboardDidHide(){
  17. this.setState({bounces: true});
  18. }
  19.  
  20. render() {
  21. return (
  22. <KeyboardAvoidingView style={styles.container} behavior="padding" enabled>
  23. <ScrollView keyboardDismissMode="interactive" bounces={this.state.bounces}>
  24. <TextInput
  25. style={{height: 40,width: 150,borderColor: 'gray',borderWidth: 1}}
  26. />
  27. </ScrollView>
  28.  
  29. </KeyboardAvoidingView>
  30. );
  31. }
  32. }

编辑:

当RNT小于10(ms)时,RNT hack将覆盖持续时间.对你来说应该改变:node_modules / react-native / Libraries / Components / Keyboard / KeyboardAvoidingView.js方法:scheduleLayoutAnimation change:

  1. const {duration,easing,endCoordinates} = event;

至:

  1. let {duration,endCoordinates} = event;

添加

  1. if(duration < 10){
  2. duration = 10;
  3. }

在if(duration&& easing)条件中.

这将确保最短的持续时间为1毫秒而且永远不会减少,因此持续时间不会再被抛出.

我的KeyboardAvoidingView.js,_ onKeyboardChange方法看起来像这样:

  1. _onKeyboardChange = (event: ?KeyboardEvent) => {
  2. if (event == null) {
  3. this.setState({bottom: 0});
  4. return;
  5. }
  6.  
  7. let {duration,endCoordinates} = event;
  8. const height = this._relativeKeyboardHeight(endCoordinates);
  9.  
  10. if (this.state.bottom === height) {
  11. return;
  12. }
  13.  
  14. if (duration && easing) {
  15. if(duration < 10){
  16. duration = 10;
  17. }
  18. LayoutAnimation.configureNext({
  19. duration: duration,update: {
  20. duration: duration,type: LayoutAnimation.Types[easing] || 'keyboard',},});
  21. }
  22. this.setState({bottom: height});
  23. };

编辑2:

我向RNT团队提交了一个问题,并向他们开了一个公关:https://github.com/facebook/react-native/pull/21858

猜你在找的React相关文章