Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ensure black root view on iOS (#6813)

authored by

Samuel Newman and committed by
GitHub
0aee6390 84796c1b

+7 -2
+7 -2
src/App.native.tsx
··· 10 10 SafeAreaProvider, 11 11 } from 'react-native-safe-area-context' 12 12 import * as SplashScreen from 'expo-splash-screen' 13 + import * as SystemUI from 'expo-system-ui' 13 14 import {msg} from '@lingui/macro' 14 15 import {useLingui} from '@lingui/react' 15 16 17 + import {KeyboardControllerProvider} from '#/lib/hooks/useEnableKeyboardController' 16 18 import {QueryProvider} from '#/lib/react-query' 17 19 import { 18 20 initialize, ··· 23 25 import {ThemeProvider} from '#/lib/ThemeContext' 24 26 import I18nProvider from '#/locale/i18nProvider' 25 27 import {logger} from '#/logger' 28 + import {isIOS} from '#/platform/detection' 26 29 import {Provider as A11yProvider} from '#/state/a11y' 27 30 import {Provider as MutedThreadsProvider} from '#/state/cache/thread-mutes' 28 31 import {Provider as DialogStateProvider} from '#/state/dialogs' ··· 65 68 import {useStarterPackEntry} from '#/components/hooks/useStarterPackEntry' 66 69 import {Provider as IntentDialogProvider} from '#/components/intents/IntentDialogs' 67 70 import {Provider as PortalProvider} from '#/components/Portal' 71 + import {AppProfiler} from '#/AppProfiler' 68 72 import {Splash} from '#/Splash' 69 73 import {BottomSheetProvider} from '../modules/bottom-sheet' 70 74 import {BackgroundNotificationPreferencesProvider} from '../modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider' 71 - import {AppProfiler} from './AppProfiler' 72 - import {KeyboardControllerProvider} from './lib/hooks/useEnableKeyboardController' 73 75 74 76 SplashScreen.preventAutoHideAsync() 77 + if (isIOS) { 78 + SystemUI.setBackgroundColorAsync('black') 79 + } 75 80 76 81 /** 77 82 * Begin geolocation ASAP