-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
41 lines (37 loc) · 1.09 KB
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
*/
import 'react-native-gesture-handler';
import React from 'react';
// import StackRouter from './components/StackRouter';
import {NavigationContainer} from '@react-navigation/native';
import {NativeBaseProvider, StatusBar} from 'native-base';
import AigcTabBar from '@/components/AigcTabBar';
import {theme} from '@/utils';
import {tabBars} from '@/utils/tabBar.config';
import StackRouter from '@/router/StackRouter';
import {SafeAreaProvider} from 'react-native-safe-area-context';
const config = {
dependencies: {
// For Expo projects (Bare or managed workflow)
// 'linear-gradient': require('expo-linear-gradient').LinearGradient,
// For non expo projects
'linear-gradient': require('react-native-linear-gradient').default,
},
};
function App(): React.JSX.Element {
return (
//
<>
<NativeBaseProvider theme={theme} config={config}>
<SafeAreaProvider>
<StackRouter />
</SafeAreaProvider>
</NativeBaseProvider>
</>
);
}
export default App;