Expo allows changing the color and other aspects of the StatusBar (at the top of the screen.)
I don't see any mention of modifying the NavBar (bottom of the screen) background color to match anywhere though. Is this possible without detaching?:
Expo allows changing the color and other aspects of the StatusBar (at the top of the screen.)
I don't see any mention of modifying the NavBar (bottom of the screen) background color to match anywhere though. Is this possible without detaching?:
In app.json, you can add the following (to the expo node)
"androidNavigationBar": {
"backgroundColor": "#880000"
},
More detail can be found in the expo docs on app.json.
As of SDK 38, this won't work in bare workflow / ejected mode as far as I can tell.