I try to add a multi line title to my header like this:
Title
Subtitle
I tried the code below. It doesn't work, I got an error "title must be string or null"
static navigationOptions = ({ navigation }) => {
return {
title:
<View>
<Text>{navigation.getParam('client') }</Text>
<Text>{navigation.getParam('ref') }</Text>
</View>,
I followed this issue on github https://github.com/react-navigation/react-navigation/issues/2430