Application Android et IOS pour l'amicale des élèves
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.

Fab.js 463B

12345678910111213141516171819202122232425
  1. // @flow
  2. export default () => {
  3. const fabTheme = {
  4. 'NativeBase.Button': {
  5. alignItems: 'center',
  6. padding: null,
  7. justifyContent: 'center',
  8. 'NativeBase.Icon': {
  9. alignSelf: 'center',
  10. fontSize: 20,
  11. marginLeft: 0,
  12. marginRight: 0
  13. },
  14. 'NativeBase.IconNB': {
  15. alignSelf: 'center',
  16. fontSize: 20,
  17. marginLeft: 0,
  18. marginRight: 0
  19. }
  20. }
  21. };
  22. return fabTheme;
  23. };