【发布时间】:2018-06-24 03:27:03
【问题描述】:
我有一个有 2 个屏幕的抽屉式导航器,主页和配置文件。我需要的是,当我单击 TouchaleOpacity 时,将屏幕从主页更改为配置文件,我该怎么做?
import { DrawerNavigator } from 'react-navigation';
import JsHome from './JsHome'
import JsProfile from './JsProfile'
const DrawerExample = DrawerNavigator({
JsHome : {
screen: JsHome
},
JsProfile : {
screen: JsProfile
},
}
PS:TouchableOpacity 在另一个 js 文件中
【问题讨论】:
标签: react-native navigation-drawer