Closed broerjuang closed 6 years ago
I try to tackle the issue on #116 . I think it's because the headerStyle props never get passed to SafeAreaView. So, here's the result after I define the style on Home.
SafeAreaView
Home
<StackNavigator.Screen headerTitle="Homes" navigation=nav headerStyle=Style.(style([backgroundColor(String("red"))]))> ...( () => <View style=Styles.continer> <Text style=Styles.title> (ReasonReact.string("Home screen")) </Text> (renderButtons(nav)) </View> ) </StackNavigator.Screen>,
Thank you!
I try to tackle the issue on #116 . I think it's because the headerStyle props never get passed to
SafeAreaView
. So, here's the result after I define the style onHome
.