added horizontal screen support (#4316)

Co-authored-by: hsmnzaydn <serkan.ozaydin@applixus.com>
This commit is contained in:
Hüseyin Serkan Özaydin
2026-06-03 19:08:41 -04:00
committed by GitHub
co-authored by hsmnzaydn
parent 09872bfe7b
commit 4fc28da450
2 changed files with 15 additions and 2 deletions
+13 -1
View File
@@ -31,7 +31,19 @@
}
}
},
"ITSAppUsesNonExemptEncryption": false
"ITSAppUsesNonExemptEncryption": false,
"UISupportedInterfaceOrientations": [
"UIInterfaceOrientationPortrait",
"UIInterfaceOrientationPortraitUpsideDown",
"UIInterfaceOrientationLandscapeLeft",
"UIInterfaceOrientationLandscapeRight"
],
"UISupportedInterfaceOrientations~ipad": [
"UIInterfaceOrientationPortrait",
"UIInterfaceOrientationPortraitUpsideDown",
"UIInterfaceOrientationLandscapeLeft",
"UIInterfaceOrientationLandscapeRight"
]
},
"privacyManifests": {
"NSPrivacyTracking": false,
+2 -1
View File
@@ -145,7 +145,8 @@ export default function RootLayout() {
headerTintColor: colors.textPrimary,
headerTitleStyle: { fontSize: 16, fontWeight: '600' },
contentStyle: { backgroundColor: colors.bgBase },
headerShadowVisible: false
headerShadowVisible: false,
orientation: 'all'
}}
>
<Stack.Screen