Go to file
Jamon Holmgren 2fd5612422 WIP: Migrating to WKWebView 2018-09-08 14:11:42 -07:00
android Rename ReactWebView to RNCWebView, remove more infinitered references 2018-08-15 20:30:06 -07:00
bin Added starter setup script 2018-08-15 21:09:05 -07:00
ios WIP: Migrating to WKWebView 2018-09-08 14:11:42 -07:00
js WIP: Migrating to WKWebView 2018-09-08 14:11:42 -07:00
.gitignore Initial 2018-07-30 20:21:48 -07:00
LICENSE WIP: iOS WKWebView 2018-09-08 10:42:02 -07:00
README.md WIP: Migrating to WKWebView 2018-09-08 14:11:42 -07:00
index.js Added RNCWebViewManager to xcode proj 2018-08-02 23:52:31 -07:00
package.json WIP: iOS WKWebView 2018-09-08 10:42:02 -07:00
yarn.lock Remove example repo 2018-07-30 22:00:33 -07:00

README.md

React Native WebView - a Modern, Cross-Platform WebView for React Native

React Native WebView is a modern, well-supported, and cross-platform WebView for React Native. It is intended to be a replacement for the built-in WebView (which will be removed from core).

Platforms Supported

  • iOS
  • Android
  • Windows 10 (coming soon)

Installation

$ npm install --save react-native-webview
$ react-native link react-native-webview

Usage

Import the WebView component from react-native-webview and use it like so:

import React, { Component } from 'react'
import { StyleSheet, Text, View } from 'react-native'
import { WebView } from 'react-native-webview'

// ...
class MyWebComponent extends Component {
  render () {
    return (
      <WebView
        src={{uri: "https://infinite.red"}}
        style={{marginTop: 20}}
      />
    )
  }
}

Additional properties are supported and will be added here; for now, refer to the previous React Native WebView documentation for more.

https://facebook.github.io/react-native/docs/webview

Migrate from React Native core WebView to React Native WebView

Simply install React Native WebView and then use it in place of the core WebView. Their APIs are currently identical.

Contributing

Guide coming soon

Contributor Notes

  • I've removed all PropTypes for now. Instead, we'll be moving toward Flow or TypeScript at some later date

Maintainers

License

MIT