Right.js 207 B

1234567891011121314
  1. // @flow
  2. export default () => {
  3. const rightTheme = {
  4. 'NativeBase.Button': {
  5. alignSelf: null
  6. },
  7. flex: 1,
  8. alignSelf: 'center',
  9. alignItems: 'flex-end'
  10. };
  11. return rightTheme;
  12. };