forked from scorelab/Go-social
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
30 lines (26 loc) · 710 Bytes
/
App.js
File metadata and controls
30 lines (26 loc) · 710 Bytes
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
import "react-native-gesture-handler";
import React from "react";
import { SafeAreaView, StyleSheet, StatusBar } from "react-native";
import { enableScreens } from "react-native-screens";
import Navigation from "./app/navigations";
enableScreens();
function App() {
return (
<SafeAreaView style={styles.app_view_container}>
<StatusBar
backgroundColor="#fff"
barStyle={"dark-content"}
animated={true}
showHideTransition={"fade"}
/>
<Navigation />
</SafeAreaView>
);
}
export default App;
const styles = StyleSheet.create({
app_view_container: {
flex: 1,
// paddingTop: Platform.OS === 'android' ? StatusBarManager.HEIGHT : 0,
},
});