KeyboardAvoidingView with ScrollView

后端 未结 8 632
误落风尘
误落风尘 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:13

    After so many attempts, this is the one that works fine both for iOS & Android:

    
       
       ...
       
    
    

    As for the style:

    const styles = StyleSheet.create({
       keyboard: {
          flex: 1,
          flexDirection: 'column',
          justifyContent: 'center',
       }
    });
    

提交回复
热议问题