React Native - WebView


在本章中,我们将学习如何使用WebView。当您想要将网页渲染到内联移动应用程序时,可以使用它。

使用网页视图

HomeContainer将是一个容器组件

应用程序.js

import React, { Component } from 'react'
import WebViewExample from './web_view_example.js'

const App = () => {
   return (
      <WebViewExample/>
   )
}
export default App;

让我们在src/components/home文件夹中创建一个名为WebViewExample.js的新文件。

web_view_example.js

import React, { Component } from 'react'
import { View, WebView, StyleSheet }

from 'react-native'
const WebViewExample = () => {
   return (
      <View style = {styles.container}>
         <WebView
         source = {{ uri:
         'https://www.google.com/?gws_rd=cr,ssl&ei=SICcV9_EFqqk6ASA3ZaABA#q=tutorialspoint' }}
         />
      </View>
   )
}
export default WebViewExample;

const styles = StyleSheet.create({
   container: {
      height: 350,
   }
})

上述程序将生成以下输出。

反应本机 WebView