I use a Stack Navigator from React Navigation and want to make it transparent with the following code:
const MyStackNavigator = new StackNavigator({
ScreenOne: { screen: ScreenOne },
},{
cardStyle: {
backgroundColor: "transparent",
}
});
(see also: https://snack.expo.io/@pob/stacknavigator-problem)
The result in Android is fine, while the result in iOS is a black Stack Navigator:
The Android App
The iOS App
I suspect, that the background of the Stack Navigator's card is also transparent iOS, but that there's another black View behind the iOS Stack Navigator.