react-native
WebView
수색…
소개
Webview는 외부 웹 페이지 또는 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