Reputation: 21
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
Reputation: 1
Change the background color for your Android app.
"android": {
"backgroundColor": "#000000",
},
Upvotes: 0
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