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
You can use react-native-orientation-locker module and lockToPortrait() function.
This can be helpful if you would also like to have some of the screens with unlocked orientation - in this case you could also use unlockAllOrientations() function.