application-amicale/native-base-theme/components/Content.js
2020-01-28 20:07:21 +01:00

14 lines
232 B
JavaScript

// @flow
export default () => {
const contentTheme = {
flex: 1,
backgroundColor: 'transparent',
'NativeBase.Segment': {
borderWidth: 0,
backgroundColor: 'transparent'
}
};
return contentTheme;
};