This repository was archived by the owner on Sep 16, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +52
-1
lines changed Expand file tree Collapse file tree 2 files changed +52
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ var _reactTweenState = require('react-tween-state');
1010
1111var _reactTweenState2 = _interopRequireDefault ( _reactTweenState ) ;
1212
13- var _styles = require ( './../styles/ styles.js' ) ;
13+ var _styles = require ( './styles.js' ) ;
1414
1515var _styles2 = _interopRequireDefault ( _styles ) ;
1616
Original file line number Diff line number Diff line change 1+ 'use strict' ;
2+
3+ var _reactNative = require ( 'react-native' ) ;
4+
5+ var _reactNative2 = _interopRequireDefault ( _reactNative ) ;
6+
7+ function _interopRequireDefault ( obj ) { return obj && obj . __esModule ? obj : { default : obj } ; }
8+
9+ var styles = _reactNative . StyleSheet . create ( {
10+ swipeout : {
11+ backgroundColor : '#dbddde' ,
12+ flex : 1 ,
13+ overflow : 'hidden'
14+ } ,
15+ swipeoutBtnTouchable : {
16+ flex : 1
17+ } ,
18+ swipeoutBtn : {
19+ alignItems : 'center' ,
20+ backgroundColor : '#b6bec0' ,
21+ flex : 1 ,
22+ justifyContent : 'center' ,
23+ overflow : 'hidden'
24+ } ,
25+ swipeoutBtnText : {
26+ color : '#fff' ,
27+ textAlign : 'center'
28+ } ,
29+ swipeoutBtns : {
30+ bottom : 0 ,
31+ flex : 1 ,
32+ flexDirection : 'row' ,
33+ position : 'absolute' ,
34+ right : 0 ,
35+ top : 0
36+ } ,
37+ swipeoutContent : {
38+ flex : 1
39+ } ,
40+ colorDelete : {
41+ backgroundColor : '#fb3d38'
42+ } ,
43+ colorPrimary : {
44+ backgroundColor : '#006fff'
45+ } ,
46+ colorSecondary : {
47+ backgroundColor : '#fd9427'
48+ }
49+ } ) ;
50+
51+ module . exports = styles ;
You can’t perform that action at this time.
0 commit comments