Вы можете настроить свой заголовок на каждом экране, используя статические навигационные опции, как показано ниже (только компонент класса)
static navigationOptions = {
title: 'Home',
headerTintColor: '#5F55B2',
headerStyle: { height: 60 },
};
или
static navigationOptions = ({ navigation }) => {
return {
headerTitle: (
<View style={{ alignItems: 'center' }}>
<Text style={{ fontSize: 18 }}>Home</Text >
<Text>header</Text>
</View >),
headerRight: (
<View style={{ flexDirection: 'row' }}>
<Button transparent>
<Icon name='ios-search' />
</Button>
<Button transparent>
<Icon name='ios-calendar' />
</Button>
</View>
),
headerStyle: { backgroundColor: 'green' }
}
}