React Native KeyboardAwareScrollView 不起作用



我正在尝试使用反应本机键盘感知滚动视图库(0.2.7(。它对我绝对没有任何作用。我做错了什么?

import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view'
render() {
  return (
    <KeyboardAwareScrollView>
      <View>
        <TextInput placeholder='hi1' />
        <TextInput placeholder='hi2' />
        <TextInput placeholder='hi3' />
        <TextInput placeholder='hi4' />
        <TextInput placeholder='hi5' />
        <TextInput placeholder='hi6' />
        <TextInput placeholder='hi7' />
      </View>
    </KeyboardAwareScrollView>
  )
}

现在建议改用 KeyboardAvoidingView。它由 React Native API 提供。;)

相关内容

  • 没有找到相关文章

最新更新