forked from jzpz/inventoryapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyles.js
More file actions
43 lines (42 loc) · 720 Bytes
/
Styles.js
File metadata and controls
43 lines (42 loc) · 720 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
import { StyleSheet } from 'react-native';
export const styles = StyleSheet.create({
backgroundContainer: {
flex:1,
alignItems:"center",
padding: 10
},
contentContainer: {
width:"100%",
borderRadius:5,
padding:20
},
container: {
flex: 1,
flexDirection: 'column'
},
row: {
flexWrap: 'wrap',
flexDirection: "row",
},
error: {
color: 'red'
},
buttonSolid: {
height: 40,
borderRadius: 5,
justifyContent: 'center',
alignItems: 'center',
flexDirection: "column",
},
inputBox: {
margin: 20,
width: 400,
},
input: {
padding: 10,
},
buttonContainer: {
width: 200,
alignItems: 'center',
}
});