防止KeyboardAvoidingView导致内容重叠(React Native)?

问题描述 投票:0回答:2

我正在尝试为注册表单创建一个

KeyboardAvoidingView
区域。我已经将该组件调到了在 iOS 和 Android 上实际键盘调整效果不错的位置。

但是,

KeyboardAvoidingView
似乎只是压缩高度,而不是向视图底部添加更多高度并向上滚动。

这是 Android 上的效果:

键盘调整前:

enter image description here

键盘调整后:

enter image description here

这是该组件的代码:

<KeyboardAvoidingView keyboardVerticalOffset={20} behavior={Platform.OS === 'ios' ? 'padding' : null} style={mainWithFooter.container}>
  <View style={mainWithFooter.main}>
    <Text style={material.display1}>Create Your Account</Text>
  </View>
  <View style={mainWithFooter.footer}>
    <Input
      placeholder='First name'
      onChangeText={t => updateSignupForm('firstName', t)}
    />
    <Input
      placeholder='Last name'
      onChangeText={t => updateSignupForm('lastName', t)}
    />
    <Input
      placeholder='Email'
      keyboardType='email-address'
      autoCapitalize='none'
      onChangeText={t => updateSignupForm('email', t)}
    />
    <Input
      placeholder='Password'
      secureTextEntry
      onChangeText={t => updateSignupForm('password', t)}
    />
    <Button
      text='Create Account'
      onPress={signup}
      primary
      disabled={!signupFormIsValid}
      block
    />
  </View>
</KeyboardAvoidingView>

款式:

export default StyleSheet.create({
  container: {
    display: 'flex',
    flex: 1,
    backgroundColor: '#fff',
    alignItems: 'center',
    justifyContent: 'center',
    padding: 30,
    minHeight: '100%',
  },
  main: {
    flex: 1,
    display: 'flex',
    alignItems: 'center',
    justifyContent: 'center',
    marginBottom: 20,
  },
  footer: {
    width: '100%',
    flex: 0,
  },
})

如何解决这个问题,使内容不重叠?

javascript css react-native
2个回答
2
投票

我遇到了同样的问题。我将 KeyboardAvoidingView

children
包装在
View
组件中,然后使用
minHeight
设置该组件的
Dimennsions.get('window').height
。请参阅下面的示例:

<KeyboardAvoidingView keyboardVerticalOffset={20} behavior={Platform.OS === 'ios' ? 'padding' : null} style={mainWithFooter.container}>
    <View style={mainWithFooter.wrapper}> ** <-- wrapper here. **
      <View style={mainWithFooter.main}>
        <Text style={material.display1}>Create Your Account</Text>
      </View>
      <View style={mainWithFooter.footer}>
        <Input
          placeholder='First name'
          onChangeText={t => updateSignupForm('firstName', t)}
        />
       ...
      </View>
    </View>
  </KeyboardAvoidingView>

然后是款式:

const windowHeight: Dimensions.get('window').height;

export default StyleSheet.create({
  wrapper: {
    minHeight: windowHeight,
  },
    ...
});

您可能需要向包装器添加其他必要的样式,例如

flex
等。


0
投票

你可以尝试将flex:1更改为flexGrow:1

© www.soinside.com 2019 - 2024. All rights reserved.