mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
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.
46 lines
925 B
46 lines
925 B
// @flow
|
|
|
|
export default () => {
|
|
const swipeRowTheme = {
|
|
'NativeBase.ListItem': {
|
|
'.list': {
|
|
backgroundColor: '#FFF',
|
|
},
|
|
marginLeft: 0,
|
|
},
|
|
'NativeBase.Left': {
|
|
flex: 0,
|
|
alignSelf: null,
|
|
alignItems: null,
|
|
'NativeBase.Button': {
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
alignSelf: 'stretch',
|
|
borderRadius: 0,
|
|
},
|
|
},
|
|
'NativeBase.Right': {
|
|
flex: 0,
|
|
alignSelf: null,
|
|
alignItems: null,
|
|
'NativeBase.Button': {
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
alignSelf: 'stretch',
|
|
borderRadius: 0,
|
|
},
|
|
},
|
|
'NativeBase.Button': {
|
|
flex: 1,
|
|
height: null,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
alignSelf: 'stretch',
|
|
borderRadius: 0,
|
|
},
|
|
};
|
|
|
|
return swipeRowTheme;
|
|
};
|
|
|