react-native
WebView
Recherche…
Introduction
Webview peut être utilisé pour charger des pages Web externes ou du contenu HTML. Ce composant est là par défaut.
Composant simple utilisant 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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow