I started using React Native with Expo and I encountered my first problem. I want to change the color of the navigation bar on Android. Unfortunately, I can't figure out how to do that.
I tried to use https://github.com/thebylito/react-native-navigation-bar-color#readme but it prints out the following error:
TypeError: TypeError: null is not an object (evaluating 'NavigationBarColor.changeNavigationBarColor')
if (Platform.OS == 'android') {
changeNavigationBarColor('#f00', true);
}