在react-native-navigation选项卡中更改图标

时间:2017-12-13 23:39:51

标签: react-native react-native-navigation wix-react-native-navigation

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

感谢任何帮助!

1 个答案:

答案 0 :(得分:5)

使用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)
});
相关问题