forked from imgly/pesdk-react-native-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
22 lines (19 loc) · 703 Bytes
/
App.js
File metadata and controls
22 lines (19 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import 'react-native-gesture-handler';
import React from 'react';
import { SafeAreaView, StyleSheet, StatusBar } from 'react-native'
import { NavigationContainer } from '@react-navigation/native';
import * as eva from '@eva-design/eva';
import { ApplicationProvider, IconRegistry } from '@ui-kitten/components';
import { AppNavigator } from './navigation/index';
import { default as theme } from './assets/app-theme/app-theme.json';
import { EvaIconsPack } from '@ui-kitten/eva-icons';
export default App = () => {
return (
<>
<IconRegistry icons={EvaIconsPack} />
<ApplicationProvider {...eva} theme={eva.dark}>
<AppNavigator />
</ApplicationProvider>
</>
);
};