style.ts
815 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
import { StyleSheet } from 'react-native'
import { setUnit } from '../../../libs/utils'
import { View, desc, subTitle } from '../../../theme/colors'
const styles = StyleSheet.create({
container: {
backgroundColor: View.background,
flex: 1
},
containerStyle: {
alignItems: 'center',
flex: 1,
justifyContent: 'center'
},
content: {
flex: 1
},
emptyText: {
color: desc,
fontSize: setUnit(33)
},
item: {
alignItems: 'center',
flexDirection: 'row',
paddingHorizontal: setUnit(25),
paddingVertical: setUnit(16)
},
subtitle: {
color: subTitle,
fontSize: setUnit(24)
},
title: {
color: desc,
fontSize: setUnit(28)
}
})
export { styles }