I am using Library react-native-orientation: ^3.1.3
It crashes when I re-vist the page after going back
The crash states Start Preview Failed
import Orientation from "react-native-orientation"
async componentDidMount() {
Orientation.lockToLandscapeLeft(); //<--- Forcing orientation of the screen
await AsyncStorage.getItem("WorkorderId", (err, WorkorderId) => {
this.setState({
WorkorderId: WorkorderId,
});
});
}