forked from vergnet/application-amicale
14 lines
232 B
JavaScript
14 lines
232 B
JavaScript
// @flow
|
|
|
|
export default () => {
|
|
const contentTheme = {
|
|
flex: 1,
|
|
backgroundColor: 'transparent',
|
|
'NativeBase.Segment': {
|
|
borderWidth: 0,
|
|
backgroundColor: 'transparent'
|
|
}
|
|
};
|
|
|
|
return contentTheme;
|
|
};
|