forked from vergnet/application-amicale
29 lines
585 B
JavaScript
29 lines
585 B
JavaScript
// @flow
|
|
|
|
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",
|
|
fontSize: 20,
|
|
marginLeft: 0,
|
|
marginRight: 0,
|
|
},
|
|
"NativeBase.IconNB": {
|
|
alignSelf: "center",
|
|
fontSize: 20,
|
|
marginLeft: 0,
|
|
marginRight: 0,
|
|
},
|
|
},
|
|
};
|
|
|
|
return fabTheme;
|
|
};
|