style.js
873 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
import { StyleSheet } from 'react-native'
import { Colors } from 'react-native/Libraries/NewAppScreen'
import { setUnit } from '../../libs/utils'
const styles = StyleSheet.create({
scrollView: {
flex: 1,
backgroundColor: "#6E4DB3"
},
body: {
flex: 1
},
h1: {
fontWeight: '400',
textAlign: 'center',
fontSize: 40,
// paddingTop: 20,
paddingBottom: 20,
color: Colors.white
},
button: {
marginBottom: 20,
marginTop: 20
},
shoppItem: {
width: '100%',
padding: setUnit(20)
},
img: {
height: setUnit(500)
},
shoppTitle: {
textAlign: 'center',
fontSize: 16,
color: 'rgba(0,0,0,.7)',
paddingTop: 5,
paddingBottom: 5,
backgroundColor: '#fff'
}
})
export { styles }