我的屏幕上有多个textInputs,当textinput处于焦点状态时,键盘出现,并且内容很好地向上移动。
目前,这对于用户来说是令人困惑的,如果textInput和Keyboard之间有一些差距,看起来会更好。有没有办法做到这一点。谢谢
注意:整个东西都在ScrollView中。
答案 0 :(得分:0)
尝试使用
KeyboardAvoidingView
喜欢
import { KeyboardAvoidingView } from 'react-native';
<KeyboardAvoidingView style={styles.container} behavior="padding" enabled>
... your UI ...
</KeyboardAvoidingView>
https://facebook.github.io/react-native/docs/keyboardavoidingview.html