React Native Screen不是从左到右

时间:2017-10-20 06:08:15

标签: reactjs react-native uinavigationcontroller navigation-drawer

我从我的应用程序的ReactNative实现开始。

我有一个主屏幕,上面有汉堡图标。

点击此汉堡包图标后,导航屏幕应该从左到右。

这应该是预期的结果。

以下是我的代码 -

navigateTo(route) {
    this.props.navigator.push({
        name:route
    });
}

openSideMenu(){
    this.navigateTo(constants.SCREENS.SIDEMENU);
}

所以,当我点击图标时,导航屏幕从右到左。

所以我的问题是,我如何得到预期的结果。

我有 -

"react": "16.0.0-alpha.6",
"react-native": "0.44.0",
"react-native-deprecated-custom-components": "^0.1.1",

谢谢,

0 个答案:

没有答案