我正在使用react native navigation (V2)。我可以自定义标签栏text
并使用以下代码添加buttons
:
static get options() {
return {
topBar: {
title: {
text: 'Home'
},
rightButtons: [{
id: 'saveBtn',
text: 'Save'
}],
}
};
}
我在设置标签栏样式时遇到麻烦。 我有两个问题:
hide the tab bar
? add an image
作为按钮而不是save
文本吗?