How can I increase the height of my topbar in React Native Navigation? In the styling docs, there is only an option for height in android, and this doesn't center the other things (title, buttons, etc.) in the topBar, only adding height to the bottom of the title. My current options are:
topBar: {
visible: true,
elevation: 0,
height: 80, //Doesn't center items in topbar, only android
title: {
fontFamily: 'WorkSans',
height: 80
}
}