I am trying to use the KeyboardAvoidingView with behavior="padding".
behavior="padding"
For some reason, when I
My problem was not checking this platform type
adding the code below to KeyboardAvoidView fixed it for me
KeyboardAvoidView
behavior={Platform.OS === "ios" ? "padding" : 'height'}