호스팅한 도메인 웹을 앱으로 변환하고 싶어서 구름 IDE container에 들어가서 expo를 이용해서
터미널에 expo install react-native-webview 소스를 복붙한다음에
import * as React from 'react';
import { WebView } from 'react-native-webview';
export default class App extends React.Component {
render() {
return <WebView source={{ uri: 'http://jelly2020.dothome.co.kr/' }} style={{ marginTop: 20 }} />;
}
}
이런식으로 app.js에 복붙했습니다. 그리고 실행을 했는데 결과창에 큐알코드는 안나오고
Failed to compile.
./src/App.js
Module not found: Can't resolve 'react-native-webview' in '/workspace/areqt/src'
이런 식으로 뜨네요..
해결 방법 알려주시면 정말 감사하겠습니다.