-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.js
64 lines (63 loc) · 1.2 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import { StyleSheet, Dimensions } from "react-native";
const { width } = Dimensions.get("window");
export default styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
center: {
alignItems: "center",
justifyContent: "space-between",
},
row: {
flexDirection: "row",
},
button: {
marginTop: 20,
paddingVertical: 10,
alignItems: "center",
borderColor: "#d3d3d3",
borderWidth: 1,
borderRadius: 5,
width: 200,
},
facebookButton: {
backgroundColor: "#3b5998",
marginTop: 20,
paddingVertical: 10,
alignItems: "center",
borderColor: "#3b5998",
borderWidth: 1,
borderRadius: 5,
width: 200,
},
border: {
width: "85%",
margin: 10,
padding: 15,
fontSize: 16,
borderColor: "#d3d3d3",
borderBottomWidth: 1,
textAlign: "center",
},
postPhoto: {
height: 250,
width: width,
},
roundImage: {
width: 40,
height: 40,
borderRadius: 20,
margin: 5,
},
cameraButton: {
height: 100,
width: 100,
borderRadius: 50,
alignSelf: "center",
backgroundColor: "#fff",
marginBottom: 50,
},
});