forked from vergnet/application-amicale
16 lines
310 B
JavaScript
16 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;
|
|
};
|