react-native
WebView
サーチ…
前書き
Webviewを使用して、外部WebページまたはHTMLコンテンツを読み込むことができます。このコンポーネントはデフォルトでそこにあります。
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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow