-
Hi Alex T⚜️
Thank you for your reply, Hope this explanation helps.
Please see the image at the end of this post. Primary Changes the Top and Bottom navigation bars, but it does not change the "android:navigationBarColor" which sits below the bottom navigation bar and it is not defined in the app theme.
Adding "navigationBarColor:" line to Theme.js does not change the "navigationBarColor:" as it is not defined in the App.
Please add this <item name="android:navigationBarColor">
#e60000</item> to styles.xml in the Android folder and compile the app to see the bar in RED.<!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar"> <!-- Customize your theme here. --> <item name="android:textColor">
#ffffff</item> <item name="android:navigationBarColor">#e60000</item> </style>-
Hi Alex T⚜️ I am wondering why you are avoiding replying about changing the "android:navigationBarColor" dynamically? (It's the bar on the very bottom on ANDROID. phones)
It can be done MANUALLY inside styles.xml, a manual setting means you are stuck with the color in Dark Mode which is not ideal
@color/theme_color
It's better to change colors in Theme.js file (instead of direct modification of Android project) it should change colors dynamically, however it looks like there is some error in the library we're using so it's actually doesn't work properly, I hope this bug will be fixed in the future, then it should start to work.
-
Thank you Alex T⚜️ it is always nice to receive an answer and clarity.
Look forward to seeing the fixed version of the Android App.
-
Thank you Alex T⚜️ it is always nice to receive an answer and clarity.
Look forward to seeing the fixed version of the Android App.