react-native                
            WebView
        
        
            
    Sök…
Introduktion
Webview kan användas för att ladda externa webbsidor eller html-innehåll. Denna komponent finns som standard.
Enkel komponent med webbvisning
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
        Licensierat under CC BY-SA 3.0
        Inte anslutet till Stack Overflow