Merge pull request #38 from ehd/master

Set backgroundColor to transparent by default
This commit is contained in:
Alexey 2015-12-16 23:42:31 +01:00
commit ff501b9f84
2 changed files with 18 additions and 2 deletions

View File

@ -6,7 +6,15 @@ const {
class BlurView extends Component {
render() {
return <NativeBlurView {...this.props} />;
return (
<NativeBlurView
{...this.props}
style={{
backgroundColor: 'transparent',
...this.props.style
}}
/>
);
}
}

View File

@ -6,7 +6,15 @@ const {
class VibrancyView extends Component {
render() {
return <NativeVibrancyView {...this.props} />;
return (
<NativeVibrancyView
{...this.props}
style={{
backgroundColor: 'transparent',
...this.props.style
}}
/>
);
}
}