KeyboardAvoidingView with ScrollView

后端 未结 8 633
误落风尘
误落风尘 2021-02-01 12:34

I am sort of new to react native and have one question that I did not find in react native documentation.

I am looking into this component KeyboardAvoidingView

8条回答
  •  没有蜡笔的小新
    2021-02-01 13:15

    It looks like facebook has not yet implemented a solution for scrollViews. But I have found solution made by Wix, react-native-keyboard-aware-scrollview that works like it should :)

    npm i react-native-keyboard-aware-scrollview --save

    import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scrollview';
    
    
      
    
    

提交回复
热议问题