Change background color of android bottom navigation bar. #1244
-
As react-native-navigation offers options to change the background color of the Android navigation bar, is there a way in react-native-screens too like below to change the background color on the fly? @WoLewicki Any suggestion on this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
It is currently not available in our library, but for sure it could be. We are always open for PRs with such functionalities and it shouldn't be too hard to implement I think. You are right that |
Beta Was this translation helpful? Give feedback.
@waheedakhtar694 using
navigationBarColor
prop should change the color of navigation bar, similarly to how it is done with status bar. You can see it done e.g. here: https://github.com/software-mansion/react-native-screens/pull/1264/files#diff-676b7c94b457068affed59b63df75348e5a353566666f1939aed71230fbdaaf5R173. You can try and run theTestsExample
project and useTest860.tsx
inApp.js
to check all these options.