我想知道是否可以在react-native-navigation v2中向所有屏幕添加固定的标题。像这样:
<View style={{flex: 1}}>
<View style={{flex: 0.3}}>
<Text>Fixed Banner</Text>
</View>
<View style={{flex: 0.7}}>
Navigation.setRoot({
root: {
bottomTabs: {
id: 'BottomTabsId',
children: [
{
component: {
name: 'SignIn',
options: {
bottomTab: {
fontSize: 12,
text: 'Sign In',
icon: require('./signin.png')
}
}
},
},
...
],
}
</View>
</View>
每当我将标签页切换到另一个屏幕时,理想情况下,我总是希望看到相同的横幅。