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 585B

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