how to disable rotation in React Native?

前端 未结 11 1355
渐次进展
渐次进展 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:35

    For Android: In your manifest file put:

    xmlns:tools="http://schemas.android.com/tools"
    

    Then inside the application tag put:

    tools:ignore="LockedOrientationActivity"
    

    And then in all activity set:

    android:screenOrientation="portrait"
    

提交回复
热议问题