lock-device-orientation.mo

Prerequisites

  • A running React Native app, preferably started with the generator

Steps

:warning: Do not forget to rebuild your app

Lock all the app pages

:warning: Do not lock the screen rotation on react-native-camera or other native modules which needs screen rotation

We need to lock all the app pages, to do so import react-native-orientation in our top component:

import Orientation from 'react-native-orientation

Add those lines to lock the orientation:

componentWillMount () {
  Orientation.lockToPortrait()
}

Last updated