react-native
WebView
Ricerca…
introduzione
Webview può essere utilizzato per caricare pagine Web esterne o contenuti HTML. Questo componente è lì per impostazione predefinita.
Componente semplice tramite 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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow