如何在 React Native Navigation 中增加我的 topbar 的高度?在样式文档中,android 中只有一个高度选项,这不会将其他内容(标题、按钮等)置于 topBar 的中心,只会将高度添加到标题的底部。我目前的选择是:
topBar: {
visible: true,
elevation: 0,
height: 80, //Doesn't center items in topbar, only android
title: {
fontFamily: 'WorkSans',
height: 80
}
}