diff --git a/apps/expo/app.config.ts b/apps/expo/app.config.ts index 85a1434..05a7970 100644 --- a/apps/expo/app.config.ts +++ b/apps/expo/app.config.ts @@ -42,7 +42,7 @@ const defineConfig = (): ExpoConfig => ({ [ "expo-screen-orientation", { - initialOrientation: "PORTRAIT_UP", + initialOrientation: "ALL", }, ], [ diff --git a/apps/expo/src/components/player/settings/Sheet.tsx b/apps/expo/src/components/player/settings/Sheet.tsx index 011b2c2..d5a87af 100644 --- a/apps/expo/src/components/player/settings/Sheet.tsx +++ b/apps/expo/src/components/player/settings/Sheet.tsx @@ -1,4 +1,5 @@ import type { SheetProps, ViewProps } from "tamagui"; +import { SafeAreaProvider, SafeAreaView } from "react-native-safe-area-context"; import { ScrollView, Separator, @@ -52,22 +53,26 @@ function SettingsSheetFrame({ isLoading?: boolean; }) { return ( - - {isLoading && ( - - )} - {!isLoading && children} - + + + + {isLoading && ( + + )} + {!isLoading && children} + + + ); }