Install: npm install reaction-native-orientation -save
in AppDelegate.m Add these two lines:
#import "../../node_modules/react-native-orientation/iOS/RCTOrientation/Orientation.h"
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
return [Orientation getOrientation];
}
componentDidMount(){
Orientation.lockToLandscape();
}