Mobile
[React-Native] WebView 환경 설정
J1Eun
2024. 2. 20. 15:02
react-native-webview 설치
npm install --save react-native-webview
const windowWidth = Dimensions.get('window').width;
const windowHeight = Dimensions.get('window').height;
<SafeAreaView style={styles.container}>
<WebView
style={styles.webview}
source={{uri: 'https://naver.com'}}
/>
</SafeAreaView>
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'space-between',
},
webview: {
flex: 1,
width: windowWidth,
height: windowHeight,
},