-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
40 lines (36 loc) · 836 Bytes
/
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
36
37
38
39
40
import React from "react";
import {
StyleSheet,
View,
Platform,
StatusBar,
SafeAreaView,
} from "react-native";
import Editor from "./Editor";
const MyStatusBar = ({ backgroundColor, ...props }) => (
<View style={[styles.statusBar, { backgroundColor }]}>
<SafeAreaView>
<StatusBar translucent backgroundColor={backgroundColor} {...props} />
</SafeAreaView>
</View>
);
export default function App() {
return (
<View style={styles.root}>
<MyStatusBar backgroundColor="#5E8D48" barStyle="light-content" />
<Editor />
</View>
);
}
const STATUSBAR_HEIGHT = StatusBar.currentHeight;
const styles = StyleSheet.create({
root: {
flex: 1,
backgroundColor: "#fff",
alignItems: "stretch",
justifyContent: "center",
},
statusBar: {
height: STATUSBAR_HEIGHT,
},
});