Merge pull request #38 from ehd/master
Set backgroundColor to transparent by default
This commit is contained in:
commit
ff501b9f84
|
@ -6,7 +6,15 @@ const {
|
|||
|
||||
class BlurView extends Component {
|
||||
render() {
|
||||
return <NativeBlurView {...this.props} />;
|
||||
return (
|
||||
<NativeBlurView
|
||||
{...this.props}
|
||||
style={{
|
||||
backgroundColor: 'transparent',
|
||||
...this.props.style
|
||||
}}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,15 @@ const {
|
|||
|
||||
class VibrancyView extends Component {
|
||||
render() {
|
||||
return <NativeVibrancyView {...this.props} />;
|
||||
return (
|
||||
<NativeVibrancyView
|
||||
{...this.props}
|
||||
style={{
|
||||
backgroundColor: 'transparent',
|
||||
...this.props.style
|
||||
}}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue