webview

이주희·2022년 5월 5일
0

ReactNative

목록 보기
9/10
  1. webview 설치
    [react-native-webview]
    yarn add react-native-webview

  2. webView import
    import WebView from "react-native-webview";

  3. uri 다음에 접속할 링크 입력
    <WebView source={{uri: 'https://codebootcamp.co.kr/home'}}/>


App.tsx에서 할 경우

import { WebView } from 'react-native-webview';

const App: ()=> Node =()=> {
	return <WebView source={{uri: 'https://codecamp-deploy.com'}} />;
};

export default App;
profile
🍓e-juhee.tistory.com 👈🏻 이사중

0개의 댓글