Merge pull request #40 from viix/master

fix #39 issue
This commit is contained in:
Alexey 2015-12-20 00:36:15 +01:00
commit f39f79e0ba
2 changed files with 6 additions and 6 deletions

View File

@ -9,10 +9,10 @@ class BlurView extends Component {
return ( return (
<NativeBlurView <NativeBlurView
{...this.props} {...this.props}
style={{ style={[{
backgroundColor: 'transparent', backgroundColor: 'transparent',
...this.props.style }, this.props.style
}} ]}
/> />
); );
} }

View File

@ -9,10 +9,10 @@ class VibrancyView extends Component {
return ( return (
<NativeVibrancyView <NativeVibrancyView
{...this.props} {...this.props}
style={{ style={[{
backgroundColor: 'transparent', backgroundColor: 'transparent',
...this.props.style }, this.props.style
}} ]}
/> />
); );
} }