Email or username:

Password:

Forgot your password?
Top-level
dansup

@grishka Oh really? I'm using react-native but I'm sure there is some config for this, I'll chat with you after work, it's been a minute and we have a lot to discuss bro!

1 comment
Григорий Клюшников

dansup, you do it in your theme, it's normally in an xml file somewhere in res/values. Like this:

<style name="..." parent="...">
    <!-- ... other attributes you most probably have there ... -->
    <item name="android:enforceNavigationBarContrast">false</item>
    <item name="android:navigationBarColor">#FFFF00</item>
</style>

Can also be done dynamically in an activity, getWindow().setNavigationBarColor(0xFFFFFF00);

Go Up