File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 11import authStore from '@/zustand/authStore'
22import { navigationStore } from '@/zustand/navigationStore'
3+ import { AppIconRound } from '@assets/icons/icons'
4+ import { AutoStatusBar } from '@components/StatusBar'
35import S from '@utils/storage'
46import type { NavProp } from '@utils/types'
57import { 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}
You can’t perform that action at this time.
0 commit comments