1234567891011121314151617181920212223 |
- import variable from "./../variables/platform";
- export default (variables = variable) => {
- const platform = variables.platform;
- const fabTheme = {
- "NativeBase.Button": {
- alignItems: "center",
- padding: null,
- justifyContent: "center",
- "NativeBase.Icon": {
- alignSelf: "center"
- },
- "NativeBase.IconNB": {
- alignSelf: "center",
- fontSize: 20,
- lineHeight: platform === "ios" ? 24 : undefined
- }
- }
- };
- return fabTheme;
- };
|