当键盘出现在 React Native 中时如何移动视图?

Kar*_*mar 2 reactjs react-native redux redux-form react-router-redux

当 TextInput 获得焦点时,键盘会隐藏提交按钮。如何自动滑动TextInput下方的组件

d32*_*223 6

现在使用react-native KeyboardAvoidingView怎么样(官方文档

import {KeyboardAvoidingView} from 'react-native';

<KeyboardAvoidingView style={styles.container} behavior="padding" enabled>
  ... your UI ...
</KeyboardAvoidingView>;
Run Code Online (Sandbox Code Playgroud)

在 iOS 上测试过,对我来说开箱即用效果很好。对于 android 考虑添加参数:android:windowSoftInputMode="adjustResize"到你的 AndroidManifest.xml