how to disable rotation in React Native?

前端 未结 11 1351
渐次进展
渐次进展 2020-12-02 07:43

I would like to support only portrait view. How can I make a React Native app not to autorotate? I tried searching documentation and Github issues, but I didn\'t find anythi

11条回答
  •  没有蜡笔的小新
    2020-12-02 08:24

    If you are using RN expo project, and app contains react-navigation, then setting up the navigation to the following code helped me.

    const AppNavigator = createStackNavigator(
    {
        Page1: { screen: Page1}
    },
    {
        portraitOnlyMode: true
    });
    

提交回复
热议问题