Skip to content

Commit 70fd7a8

Browse files
committed
feat: Enhance Splash screen with AutoStatusBar and AppIconRound components
1 parent e0f04bc commit 70fd7a8

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/screens/splash/Splash.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import authStore from '@/zustand/authStore'
22
import { navigationStore } from '@/zustand/navigationStore'
3+
import { AppIconRound } from '@assets/icons/icons'
4+
import { AutoStatusBar } from '@components/StatusBar'
35
import S from '@utils/storage'
46
import type { NavProp } from '@utils/types'
57
import { useEffect } from 'react'
@@ -23,5 +25,10 @@ export default function Splash({ navigation }: NavProp) {
2325
else navigation.replace('Home')
2426
}, [navigation, token])
2527

26-
return <View className='flex-1 items-center justify-center'></View>
28+
return (
29+
<View className='bg flex-1 items-center justify-center'>
30+
<AutoStatusBar scheme='dark' />
31+
<AppIconRound height={150} width={150} />
32+
</View>
33+
)
2734
}

0 commit comments

Comments
 (0)