我正在使用react-native-tab-view
,但 TabBar 很大,我想让它变小。如何定制它?应用边距/填充 0 不起作用。应用小高度有效,但文本丢失。如何使它更小或更可定制?
<TabView
...
renderTabBar={props =>
<TabBar
{...props}
indicatorStyle={{ backgroundColor: 'white' }}
style={{ backgroundColor: 'pink' }}
tabStyle={{ backgroundColor: 'teal' }}
renderLabel={({ route, focused, color }) => (
<Text style={{ color, margin: 8 }}>
{route.title}
</Text>
)}
}