application-amicale/native-base-theme/components/Right.js

15 lines
207 B
JavaScript
Raw Normal View History

2019-06-25 22:20:24 +02:00
// @flow
2020-01-28 20:07:21 +01:00
export default () => {
2019-06-25 22:20:24 +02:00
const rightTheme = {
'NativeBase.Button': {
2020-01-28 20:07:21 +01:00
alignSelf: null
2019-06-25 22:20:24 +02:00
},
flex: 1,
alignSelf: 'center',
2020-01-28 20:07:21 +01:00
alignItems: 'flex-end'
2019-06-25 22:20:24 +02:00
};
return rightTheme;
};