You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
847 B
48 lines
847 B
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var _reactNative = require('react-native');
|
|
|
|
var styles = _reactNative.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'
|
|
}
|
|
});
|
|
|
|
exports.default = styles; |