Shrinivas Seenu
Shrinivas Seenu

Reputation: 21

White flickering when keyboard pops up in my react native app

I'm using expo sdk 40. Tried changing backgroundColor prop in app.json and still no change . Is it a known issue in react native?

Upvotes: 0

Views: 1590

Answers (2)

NoFreeNames
NoFreeNames

Reputation: 1

Change the background color for your Android app.

"android": {
  "backgroundColor": "#000000",
},

Upvotes: 0

Uziel Perez
Uziel Perez

Reputation: 51

If you're using Expo, changing the softwareKeyboardLayoutMode in the app.json worked for me.

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

Keyboard white flickering with React Native

Upvotes: 0

Related Questions