import React, { Component } from 'react' import { StyleSheet, WebView, View, ActivityIndicator, } from 'react-native' import Modal from 'react-native-modal' import Close from './close' export default class WebViewModal extends Component { render() { return ( { return ( ) }} /> ) } } const styles = StyleSheet.create({ modal: { marginLeft: 0, marginRight: 0, marginBottom: 0, marginTop: 0, paddingTop: 60, backgroundColor: 'black', }, webview: { flex: 1, justifyContent: 'flex-start', alignItems: 'flex-start', }, loadingContainer: { backgroundColor: 'black', flex: 1, height: '100%', width: '100%', justifyContent: 'center', alignItems: 'center', }, })