Implemet splash screen

This commit is contained in:
mansi-dev
2026-02-09 23:57:51 +05:30
parent c14f8eb96a
commit 18fe05a718
8 changed files with 7016 additions and 27 deletions

View File

@@ -11,8 +11,14 @@ import {
SafeAreaProvider,
useSafeAreaInsets,
} from 'react-native-safe-area-context';
import RNBootSplash from 'react-native-bootsplash';
import { useEffect } from 'react';
function App() {
useEffect(() => {
RNBootSplash.hide({ fade: true });
}, []);
const isDarkMode = useColorScheme() === 'dark';
return (