Skip to content

Commit 6d1d169

Browse files
committed
first commit
1 parent 1002434 commit 6d1d169

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+83434
-204
lines changed

App.tsx

+10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1+
import './global';
2+
import * as eva from '@eva-design/eva';
3+
import { ApplicationProvider, Layout, Text } from '@ui-kitten/components';
4+
15
import { StatusBar } from 'expo-status-bar';
26
import React from 'react';
37
import { SafeAreaProvider } from 'react-native-safe-area-context';
8+
import { Provider } from "react-redux";
49

510
import useCachedResources from './hooks/useCachedResources';
611
import useColorScheme from './hooks/useColorScheme';
712
import Navigation from './navigation';
13+
import { store } from "./store/store";
814

915
export default function App() {
1016
const isLoadingComplete = useCachedResources();
@@ -14,10 +20,14 @@ export default function App() {
1420
return null;
1521
} else {
1622
return (
23+
<Provider store={store}>
24+
<ApplicationProvider {...eva} theme={eva.light}>
1725
<SafeAreaProvider>
1826
<Navigation colorScheme={colorScheme} />
1927
<StatusBar />
2028
</SafeAreaProvider>
29+
</ApplicationProvider>
30+
</Provider>
2131
);
2232
}
2333
}

app.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515
"updates": {
1616
"fallbackToCacheTimeout": 0
1717
},
18-
"assetBundlePatterns": [
19-
"**/*"
20-
],
18+
"assetBundlePatterns": ["**/*"],
2119
"ios": {
2220
"supportsTablet": true
2321
},

0 commit comments

Comments
 (0)