So sperren Sie die Ausrichtung für einen bestimmten Bildschirm in iOS in React Native
import Orientation from 'react-native-orientation-locker';
useEffect(()=>{
Orientation.lockToPortrait(); //this will lock the view to Portrait
Orientation.lockToLandscape(); //this will lock the view to Landscape
})
SAMER SAEID