-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
48 lines (46 loc) · 1.05 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
36
37
38
39
40
41
42
43
44
45
46
47
48
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
import { P3colorView } from './modules/p3color';
export default function App() {
return (
<View style={styles.container}>
<View style={styles.itemContainer}>
<View style={styles.rgbColor} />
<Text style={styles.label}>RGB</Text>
</View>
<View style={styles.itemContainer}>
<P3colorView style={styles.p3Color} />
<Text style={styles.label}>Display P3</Text>
</View>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
flexDirection: 'row',
},
itemContainer: {
flexDirection: 'column',
margin: 16,
},
label: {
fontSize: 16,
marginTop: 8,
fontWeight: 'bold',
textAlign: 'center',
},
rgbColor: {
backgroundColor: 'rgb(255, 0, 0)',
width: 100,
height: 100,
},
p3Color: {
width: 100,
height: 100,
},
});