Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- React Native
- web view
- 버튼 활성화
- springboot
- 원복
- Project Bee
- 폴더구조
- 해외 대외활동
- 자료구조
- FlatList
- BFS
- 경우의 수
- 완전탐색
- 백준 1992
- ReactNative
- 휴대폰 기기
- 노마드코더
- 이영직
- react
- 비트마스킹
- service 테스트
- multipart upload
- 티스토리챌린지
- Navigation
- 상속 관계 매핑
- 구현
- bfs dfs
- 오블완
- 창의충전소
- React Natvive
Archives
- Today
- Total
유미의 기록들
[React Native -13] Web View 본문
728x90
반응형
Web View: 기존에 있던 웹페이지를 앱으로 옮기는 것
이전에는 자체적으로 지원을 해주었지만 현재는 지원하지 않는 상태이다
따라서 공식 홈페이지에서 추천하는 react-native-webview 라이브러리를 설치하겠다
https://github.com/react-native-webview/react-native-webview
✅ WebView 라이브러리 설치
npm install react-native-webview
import React, { Component } from 'react';
import { WebView } from 'react-native-webview';
class SearchWebView extends Component {
constructor(props) {
super(props);
}
render() {
return (
<WebView source={{ uri: 'http://www.google.com' }} />
)
}
}
export default SearchWebView;
728x90
반응형
'MDLAB 기록 > 차량부품거래애플리케이션' 카테고리의 다른 글
[React Native -15] 행정안전부 주소 API 사용하여 직접 구현해보기 (0) | 2022.12.01 |
---|---|
[React Native -14] 다음 주소 검색 API 이용하기 (1) | 2022.11.25 |
[React Native -12] 사진 개수 제한 (0) | 2022.11.24 |
[React Native -11] Drawer Navigation (0) | 2022.11.23 |
[React Native -10] Navigation LifeCycle (0) | 2022.11.14 |
Comments