forked from talut/react-native-pin-view
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPinViewStyle.js
More file actions
45 lines (44 loc) · 863 Bytes
/
Copy pathPinViewStyle.js
File metadata and controls
45 lines (44 loc) · 863 Bytes
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
import { StyleSheet } from "react-native"
const style = StyleSheet.create({
pinView: {
alignItems: "center",
},
buttonAreaContainer: {
alignItems: "center",
alignContent: "center",
flexDirection: "row",
flexWrap: "wrap",
},
buttonContainer: {
marginBottom: 12,
width: "33%",
alignItems: "center",
justifyContent: "center",
},
buttonView: {
textAlign: "center",
alignItems: "center",
justifyContent: "center",
},
buttonText: {
color: "#000",
fontSize: 22,
fontWeight: "bold",
},
inputContainer: {
flexDirection: "row",
},
inputView: {
margin: 6,
backgroundColor: "#a3a7b9",
textAlign: "center",
alignItems: "center",
justifyContent: "center",
},
inputText: {
color: "#FFF",
fontSize: 16,
fontWeight: "bold",
},
})
export default style