forked from vergnet/application-amicale
17 lines
310 B
JavaScript
17 lines
310 B
JavaScript
|
// @flow
|
||
|
|
||
|
import variable from "./../variables/platform";
|
||
|
|
||
|
export default (variables /*: * */ = variable) => {
|
||
|
const contentTheme = {
|
||
|
flex: 1,
|
||
|
backgroundColor: "transparent",
|
||
|
"NativeBase.Segment": {
|
||
|
borderWidth: 0,
|
||
|
backgroundColor: "transparent"
|
||
|
}
|
||
|
};
|
||
|
|
||
|
return contentTheme;
|
||
|
};
|