How to disable landscape mode in React Native Android dev mode?

后端 未结 8 603
轻奢々
轻奢々 2021-01-31 13:03

I am new to android environment. I know iOS can be done in Xcode to disable device orientation. How can I disable landscape mode or any orientation mode in React Native Android?

8条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-31 14:05

    The accepted answer doesn't work if you're using react-native-navigation. Use this instead:

    Navigation.setDefaultOptions({
        layout: {
            orientation: ["portrait"],
        },
    });
    

    Check the docs here.

提交回复
热议问题