2

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?:

Slbox
  • 7,771
  • 10
  • 42
  • 90
  • 1
    I don’t think there is the API to do it in Expo though it can be done in [native android](https://stackoverflow.com/questions/27839105/android-lollipop-change-navigation-bar-color) but it seems lot to eject just to make that change. – Andrew Feb 26 '19 at 20:55

1 Answers1

3

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.

Max Weber
  • 85
  • 5