Skip to content Skip to sidebar Skip to footer

Keyboard White Flickering With React Native

When showing and hiding the keyboard in my React Native app there is a white flickering where the keyboard goes, see this: https://photos.app.goo.gl/Bwmin9T1R4OAO9tB3 I'm making my

Solution 1:

If you're using Expo and you're still having this issue, changing the softwareKeyboardLayoutMode in the app.json worked for me.

"android": {
    "softwareKeyboardLayoutMode": "pan",
    ...(other properties)
}

Solution 2:

Updating to a newer version of create-react-native-app which utilizes Expo seems to have fixed the issue.


Post a Comment for "Keyboard White Flickering With React Native"