【发布时间】:2020-08-23 19:08:28
【问题描述】:
我已经在 react-native-navigation 中设置了带有底部标签的导航,这工作正常
bottomTabs: {
id: 'BOTTOM_TABS_LAYOUT',
children: [
{
stack: {
id: 'HOME_TAB',
children: [
{
component: {
id: 'HOME_SCREEN'
name: 'HomeScreen'
}
}
],
options: {
bottomTab: {
icon: require('./home.png')
}
}
}
},
{
stack: {
id: 'PROFILE_TAB',
children: [
{
component: {
id: 'PROFILE_SCREEN',
name: 'ProfileScreen'
}
}
],
options: {
bottomTab: {
icon: require('./profile.png')
}
}
}
}
]
}
但是当我从一个选项卡切换到另一个选项卡时,我想添加一些其他代码,该怎么做?
【问题讨论】:
标签: react-native react-native-navigation wix-react-native-navigation