If largeTitle is enabled on version 3.2.0 then:
On version 2.21.0(before update to latest v3 release) everything was OK
static options() {
return {
topBar: {
title: {
text: 'Test',
},
largeTitle: {
visible: true,
},
}
}
Now:



Expected:


Same problem here!
I'm seeing the same problem too.
Also seeing the title not being set unless I call mergeOptions in the constructor.
Navigation.mergeOptions(this.props.componentId, {
topBar: {
title: { text: 'Header Title' },
largeTitle: { visible: true, color: 'white' },
},
});
+1
Any updates on this?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe the issue is still relevant, please test on the latest Detox and report back. Thank you for your contributions.
+1
Fixed in https://github.com/wix/react-native-navigation/commit/65118b1ed28dd5a4636dabd5952c515d18a0b802 and available in version 4.0.4
Most helpful comment
Same problem here!