0

可以更改标签栏中的图标react-native-navigation吗?
我的意思是,例如在我的应用程序的某个地方,我确实调用了 api,并且在得到响应后,我需要将我Icon的标签栏更改为新的。
例如Heart图标到Mail图标。

感谢任何形式的帮助!

4

1 回答 1

7

使用setTabButton

this.props.navigator.setTabButton({
  tabIndex: 0, // (optional) if missing, the icon will be added to this screen's tab
  icon: require('../img/one.png'), // local image asset for the tab icon unselected state (optional)
  selectedIcon: require('../img/one_selected.png'), // local image asset for the tab icon selected state (optional, iOS only)
  label: 'New Label' // tab label that appears under the icon (optional)
});
于 2017-12-14T03:03:34.593 回答