Skip to main content

WebView

安裝WebView

npm install react-native-webview --save

顯示網頁內容

import{View, Text, StyleSheet, Image} from 'react-native';
import WebView from 'react-native-webview';

const DetailScreen = ({result}) => {
return (
<View>
<WebView style="styles.image" source={{uri:'https://google.com'}} />
</View>
);
}

const styles = styleSheet.create({
image:{
flex:1,
width:'100%',
}
});