react-native                
            WebView
        
        
            
    Buscar..
Introducción
Webview puede utilizarse para cargar páginas web externas o contenido html. Este componente está ahí por defecto.
Componente simple utilizando webview
import React, { Component } from 'react';
import { WebView } from 'react-native';
class MyWeb extends Component {
  render() {
    return (
      <WebView
        source={{uri: 'https://github.com/facebook/react-native'}}
        style={{marginTop: 20}}
       />
    );
  }
}
    
    
    
    
    Modified text is an extract of the original Stack Overflow Documentation
        Licenciado bajo CC BY-SA 3.0
        No afiliado a Stack Overflow