forked from dancormier/react-native-swipeout
-
Notifications
You must be signed in to change notification settings - Fork 15
/
styles.js
45 lines (43 loc) · 764 Bytes
/
styles.js
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 styles = StyleSheet.create({
swipeout: {
backgroundColor: '#dbddde',
overflow: 'hidden',
},
swipeoutBtnTouchable: {
flex: 1,
},
swipeoutBtn: {
alignItems: 'center',
backgroundColor: '#b6bec0',
flex: 1,
justifyContent: 'center',
overflow: 'hidden',
},
swipeoutBtnText: {
color: '#fff',
textAlign: 'center',
},
swipeoutBtns: {
bottom: 0,
flex: 1,
flexDirection: 'row',
position: 'absolute',
right: 0,
top: 0,
},
swipeoutContent: {
},
colorDelete: {
backgroundColor: '#fb3d38',
},
colorPrimary: {
backgroundColor: '#006fff'
},
colorSecondary: {
backgroundColor: '#fd9427'
},
})
export default styles;