import React, {Component} from 'react'; import {Text, View} from 'react-native'; import WebView from 'react-native-webview'; const HTML = ` \n Hello World

HTML content in transparent body.

`; type Props = {}; type State = { backgroundColor: string, }; export default class Background extends Component { state = { backgroundColor: '#FF00FF00' }; render() { return ( WebView is transparent contained in a View with a red backgroundColor ); } }