application-amicale/native-base-theme/components/Right.js
2020-01-28 20:07:21 +01:00

14 lines
207 B
JavaScript

// @flow
export default () => {
const rightTheme = {
'NativeBase.Button': {
alignSelf: null
},
flex: 1,
alignSelf: 'center',
alignItems: 'flex-end'
};
return rightTheme;
};