KeyboardAvoidingView not Working Properly

前端 未结 14 2352
悲&欢浪女
悲&欢浪女 2020-12-02 08:51

KeyboardAvoidingView not Working Properly

I am trying to use the KeyboardAvoidingView with behavior="padding".

For some reason, when I

14条回答
  •  死守一世寂寞
    2020-12-02 09:43

    My problem was not checking this platform type

    adding the code below to KeyboardAvoidView fixed it for me

    behavior={Platform.OS === "ios" ? "padding" : 'height'}
    

提交回复
热议问题