1
嗨,我是新的反應本地,所以我現在不,如果它是可能的。 我想要一個toolbarAndroid,但我想要顯示在它們下面的操作的標題,而不是默認的旁邊。即使標題顯示在圖標旁邊,它也只會顯示出是否有空間。應用標題下的動作圖標toolbarAndroid React Native
我的工具欄
<ToolbarAndroid
style={styles.toolbar}
logo={logo}
actions={[
{
title: 'Main', icon: mainIcon, show: 'always', showWithText: true
},
...
風格
const styles = StyleSheet.create({
toolbar: {
backgroundColor: 'grey',
height: 50
},
...
How it is and how i want it to be