-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathApp.jsx
34 lines (29 loc) · 896 Bytes
/
App.jsx
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
import React from 'react';
import {StatusBar, StyleSheet, View} from 'react-native';
import {SafeAreaProvider} from 'react-native-safe-area-context';
import {Colors} from 'react-native/Libraries/NewAppScreen';
import Color from 'react-native-material-color';
import LinearGradient from 'react-native-linear-gradient';
import ChatList from './Component/ChatList/ChatList';
import AppHeader from './Component/Header/Header';
import 'react-native-gesture-handler';
import Navigation from './Component/Navigation/Navigation';
function App() {
return (
<SafeAreaProvider style={styles.content}>
<StatusBar
barStyle="light-content"
backgroundColor="transparent"
translucent
/>
<Navigation />
</SafeAreaProvider>
);
}
const styles = StyleSheet.create({
content: {
flex: 1,
backgroundColor: 'transparent',
},
});
export default App;