最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React Native - WebView with Transparent background - Stack Overflow

programmeradmin1浏览0评论

Is it an option to set transparent background to WebView element?

<View>
   <WebView source={{uri: ''}} style={{ backgroundColor:'transparent'}}/>
</View>

My HTML do ave transparent background, but it seems that the web view is still not transparent

Is it an option to set transparent background to WebView element?

<View>
   <WebView source={{uri: 'https://www.demo.io'}} style={{ backgroundColor:'transparent'}}/>
</View>

My HTML do ave transparent background, but it seems that the web view is still not transparent

Share Improve this question asked Apr 11, 2019 at 14:23 ZeeZee 1514 silver badges11 bronze badges 1
  • 2 try giving the backgroundColor: 'transparent' to the View instead – displayname Commented Apr 12, 2019 at 18:53
Add a ment  | 

1 Answer 1

Reset to default 10

Yes it works if you put style={{ backgroundColor:'transparent'} both in WebView and in the parent View

<View style={{ backgroundColor:'transparent'}}>
  <WebView 
     source={{uri: 'https://www.demo.io'}} 
     style={{ backgroundColor:'transparent'}}
  />
</View>
发布评论

评论列表(0)

  1. 暂无评论