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 1
1
import authStore from '@/zustand/authStore'
2
2
import { navigationStore } from '@/zustand/navigationStore'
3
+ import { AppIconRound } from '@assets/icons/icons'
4
+ import { AutoStatusBar } from '@components/StatusBar'
3
5
import S from '@utils/storage'
4
6
import type { NavProp } from '@utils/types'
5
7
import { useEffect } from 'react'
@@ -23,5 +25,10 @@ export default function Splash({ navigation }: NavProp) {
23
25
else navigation . replace ( 'Home' )
24
26
} , [ navigation , token ] )
25
27
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
+ )
27
34
}
You can’t perform that action at this time.
0 commit comments