react-native
WebView
Zoeken…
Invoering
Webview kan worden gebruikt om externe webpagina's of html-inhoud te laden. Dit onderdeel is er standaard.
Eenvoudig onderdeel met 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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow