-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
35 lines (32 loc) · 1.1 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
// import { StatusBar } from 'expo-status-bar';
import { Text, StyleSheet, View, useColorScheme, StatusBar, SafeAreaView } from 'react-native';
import { Provider } from 'react-redux'
import { store } from './app/store';
import FeedProvider from './controllers/feed/provider';
import Navigation from './navigation';
import React from 'react';
import AppProvider, {MemoizedAppProvider} from './controllers/provider';
import { globalStyles } from './views/styles';
import * as Clipboard from "expo-clipboard";
import Constants from "expo-constants";
import * as ImagePicker from "expo-image-picker";
import { handleImagePicked, pickImage, uploadImage } from './screens/utils/ImagePicker';
export default function App() {
const colorScheme = useColorScheme()
return (
<>
<StatusBar
barStyle={'light-content'}
backgroundColor={globalStyles.global.screenBackgroundColor}
/>
<Provider store={store}>
<MemoizedAppProvider
>
<Navigation
colorScheme={"dark"}
/>
</MemoizedAppProvider>
</Provider>
</>
)
}