DEV Community

Discussion on: How to fix KeyboardAvoidingView in React Native?

Collapse
 
256hz profile image
Abe Dolinger • Edited

instead of
{...(Platform.OS === "ios" ? { behavior: "padding" } : {})}
I recommend
behavior={Platform.select({ ios: 'padding' })}
this will also evaluate to undefined on Android.