mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 17:19:27 +01:00
28 lines
908 B
TypeScript
28 lines
908 B
TypeScript
import React from 'react'
|
|
import { DarkTheme, NavigationContainer } from '@react-navigation/native'
|
|
import SplashPage from '@app/screens/SplashPage'
|
|
import RootNavigator from '@app/navigation/RootNavigator'
|
|
import { Provider } from 'jotai'
|
|
import { StatusBar, View } from 'react-native'
|
|
import colors from '@app/styles/colors'
|
|
import TrackPlayerState from '@app/components/TrackPlayerState'
|
|
|
|
const theme = { ...DarkTheme }
|
|
theme.colors.background = colors.gradient.high
|
|
|
|
const App = () => (
|
|
<Provider>
|
|
<StatusBar animated={true} backgroundColor={'rgba(0, 0, 0, 0.4)'} barStyle={'light-content'} translucent={true} />
|
|
<TrackPlayerState />
|
|
<View style={{ flex: 1, backgroundColor: colors.gradient.high }}>
|
|
<SplashPage>
|
|
<NavigationContainer theme={theme}>
|
|
<RootNavigator />
|
|
</NavigationContainer>
|
|
</SplashPage>
|
|
</View>
|
|
</Provider>
|
|
)
|
|
|
|
export default App
|