-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.js
More file actions
44 lines (42 loc) · 704 Bytes
/
styles.js
File metadata and controls
44 lines (42 loc) · 704 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
import { StyleSheet } from 'react-native';
export default styles = StyleSheet.create({
home: {
flex: 1,
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center'
},
scanner: {
flex: 1,
flexDirection: 'column',
justifyContent: 'flex-end'
},
scanner_alt: {
flex: 1,
flexDirection: 'column',
justifyContent: 'space-around'
},
scanner_alt_top: {
height: 200,
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center'
},
title: {
margin: 10,
fontSize: 30
},
buttonContainer: {
margin: 20
},
roundButton: {
},
doubleButtons: {
flexDirection: 'row',
justifyContent: 'center'
},
input: {
margin: 10,
fontSize: 20
}
});