我的屏幕上有多个textInputs,当textinput处于焦点键盘时,内容会很好地移动。
目前这看起来像qazxsw poi
目前这对用户来说很困惑,如果textInput和Keyboard之间有一点差距会更好看。有没有办法做到这一点。谢谢
注意:整件事都在ScrollView中。
尝试使用
喜欢
KeyboardAvoidingView
import { KeyboardAvoidingView } from 'react-native'; <KeyboardAvoidingView style={styles.container} behavior="padding" enabled> ... your UI ... </KeyboardAvoidingView>