With react navigation, StackNavigator, simple header title is getting wrapped. How do I display the full title? In below code, title is Personal Information. But the title does not show full on iPhone 5s device and simulator.
Versions:
"react-native": "^0.47.2"
static navigationOptions = { title: "Personal Information" };
Resolved it. Specifying the headerTitleStyle with width matching to device width solve it.
static navigationOptions = {
title: "Personal Information",
headerBackTitle : null,
headerTitleStyle : {width : Dimensions.get('window').width}
};
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With