我一直在尝试更改堆栈导航器标题的高度。但是,什么都没用!
<Stack.Navigator initialRouteName="LiveLandingScreen">
<Stack.Screen name="LiveLandingScreen" component={LiveLandingScreen} />
<Stack.Screen name="History" component={History} />
</Stack.Navigator>
代码运行正常,但是有人可以帮助我更改标题高度吗?
谢谢
答案 0 :(得分:2)
您需要做的是,如果我们想更改“历史记录”标题栏的高度,您将执行以下操作:
<Stack.Navigator initialRouteName="LiveLandingScreen">
<Stack.Screen name="LiveLandingScreen" component={LiveLandingScreen} />
<Stack.Screen name="History" component={History} option={{headerStyle: {height: 60}}} />. ///ADD OPTION
</Stack.Navigator>
我希望它对<3
有帮助