Skip to content
This repository was archived by the owner on Sep 16, 2020. It is now read-only.

Commit f906729

Browse files
committed
Forgot to transpile
1 parent 9f62829 commit f906729

File tree

2 files changed

+52
-1
lines changed

2 files changed

+52
-1
lines changed

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var _reactTweenState = require('react-tween-state');
1010

1111
var _reactTweenState2 = _interopRequireDefault(_reactTweenState);
1212

13-
var _styles = require('./../styles/styles.js');
13+
var _styles = require('./styles.js');
1414

1515
var _styles2 = _interopRequireDefault(_styles);
1616

lib/styles.js

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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;

0 commit comments

Comments
 (0)