-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.js
49 lines (47 loc) · 829 Bytes
/
style.js
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
49
import { StyleSheet } from "react-native";
const styles = StyleSheet.create({
flexContainer: {
width: "100%",
height: "100%",
flex: 1,
justifyContent: "space-evenly",
alignItems: "center"
},
scrollContainer: {
width: "100%"
},
scrollContainerContent: {
flex: 1,
alignItems: "center"
},
flexRow: {
flex: 1,
flexDirection: "row",
justifyContent: "space-between",
alignItems: "center"
},
title: {
fontSize: 40,
fontWeight: "bold",
textAlign: "center"
},
heading1: {
fontSize: 20,
fontWeight: "bold"
},
heading2: {
fontSize: 18,
fontWeight: "bold"
},
heading3: {
fontSize: 16
},
content: {},
textInput: {
minHeight: 40,
paddingLeft: 5,
paddingBottom: 1,
width: "100%"
}
});
export default styles;