-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyles.js
41 lines (39 loc) · 869 Bytes
/
styles.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
import { StyleSheet } from "react-native";
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "flex-start",
alignItems: "center",
backgroundColor: "#669999"
},
buttons: {
// flex: 0.15,
flexDirection: "row",
alignItems: "center",
marginVertical: 20
},
button: {
marginHorizontal: 20,
padding: 20,
backgroundColor: "#0D4D4D",
color: "white",
textAlign: "center"
},
selectedButton: {
backgroundColor: "#006699"
},
body: {
// flex: 0.8,
justifyContent: "flex-start",
alignItems: "center"
},
subTitle: {
marginVertical: 10
},
viewport: {
// flex: 1,
alignSelf: "center",
backgroundColor: "white"
}
});
export default styles;