https://github.com/halilb/webview-crash
https://github.com/halilb/webview-crash
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/halilb/webview-crash
- Owner: halilb
- License: mit
- Created: 2020-10-14T13:59:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-14T13:59:52.000Z (over 5 years ago)
- Last Synced: 2026-01-03T15:46:48.172Z (6 months ago)
- Language: TypeScript
- Size: 2.56 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: docs/Contributing.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# React Native WebView - a Modern, Cross-Platform WebView for React Native
[](https://github.com/react-native-community/react-native-webview)
[](http://makeapullrequest.com)
[](#contributors)
[](https://snyk.io/test/github/react-native-community/react-native-webview)
[](https://www.npmjs.com/package/react-native-webview)
[][lean-core-issue]
**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](https://github.com/react-native-community/discussions-and-proposals/pull/3)).
## Core Maintainers - Sponsoring companies
_This project is maintained for free by these people using both their free time and their company work time._
- [Thibault Malbranche](https://github.com/Titozzz) ([Twitter @titozzz](https://twitter.com/titozzz)) from [Brigad](https://brigad.co/about)
- [Jamon Holmgren](https://github.com/jamonholmgren) ([Twitter @jamonholmgren](https://twitter.com/jamonholmgren)) from [Infinite Red](https://infinite.red/react-native)
## Platforms Supported
- [x] iOS
- [x] Android
- [x] macOS
- [x] Windows
_Note: Expo support for React Native WebView started with [Expo SDK v33.0.0](https://blog.expo.io/expo-sdk-v33-0-0-is-now-available-52d1c99dfe4c)._
## Getting Started
Read our [Getting Started Guide](docs/Getting-Started.md). If any step seems unclear, please create a detailed issue.
## Versioning
This project follows [semantic versioning](https://semver.org/). We do not hesitate to release breaking changes but they will be in a major version.
**Breaking History:**
Current Version: 
- [10.0.0](https://github.com/react-native-community/react-native-webview/releases/tag/v10.0.0) - Android Gradle plugin is only required when opening the project stand-alone
- [9.0.0](https://github.com/react-native-community/react-native-webview/releases/tag/v9.0.0) - props updates to injectedJavaScript are no longer immutable.
- [8.0.0](https://github.com/react-native-community/react-native-webview/releases/tag/v8.0.0) - onNavigationStateChange now triggers with hash url changes
- [7.0.1](https://github.com/react-native-community/react-native-webview/releases/tag/v7.0.1) - Removed UIWebView
- [6.0.**2**](https://github.com/react-native-community/react-native-webview/releases/tag/v6.0.2) - Update to AndroidX. Make sure to enable it in your project's `android/gradle.properties`. See [Getting Started Guide](docs/Getting-Started.md).
- [5.0.**1**](https://github.com/react-native-community/react-native-webview/releases/tag/v5.0.0) - Refactored the old postMessage implementation for communication from webview to native.
- [4.0.0](https://github.com/react-native-community/react-native-webview/releases/tag/v4.0.0) - Added cache (enabled by default).
- [3.0.0](https://github.com/react-native-community/react-native-webview/releases/tag/v3.0.0) - WKWebview: Add shared process pool so cookies and localStorage are shared across webviews in iOS (enabled by default).
- [2.0.0](https://github.com/react-native-community/react-native-webview/releases/tag/v2.0.0) - First release this is a replica of the core webview component
**Upcoming:**
- this.webView.postMessage() removal (never documented and less flexible than injectJavascript) -> [how to migrate](https://github.com/react-native-community/react-native-webview/issues/809)
- Kotlin rewrite
- Maybe Swift rewrite
## Usage
Import the `WebView` component from `react-native-webview` and use it like so:
```jsx
import React, { Component } from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { WebView } from 'react-native-webview';
// ...
class MyWebComponent extends Component {
render() {
return ;
}
}
```
For more, read the [API Reference](./docs/Reference.md) and [Guide](./docs/Guide.md). If you're interested in contributing, check out the [Contributing Guide](./docs/Contributing.md).
## Common issues
- If you're getting `Invariant Violation: Native component for "RNCWebView does not exist"` it likely means you forgot to run `react-native link` or there was some error with the linking process
## Contributing
See [Contributing.md](https://github.com/react-native-community/react-native-webview/blob/master/docs/Contributing.md)
## Contributors
Thanks goes to these wonderful people ([emoji key](https://github.com/all-contributors/all-contributors#emoji-key-)):

Thibault Malbranche
💻 🤔 👀 📖 🚧 ⚠️ 🚇 💬
Jamon Holmgren
💻 🤔 👀 📖 🚧 ⚠️ 💡 💬
Andrei Pfeiffer
💻 👀 🤔
Michael Diarmid
💻 👀 🤔 🔧
Scott Mathson
💻 📖
Margaret
💻 📖
Jordan Sexton
💻 📖
Malcolm Scruggs
💻 🔧 ⚠️
Momazo7u7
📖
Marco
📖
Julien Eluard
📖
Jian Wei
💻 📖
Sergei Butko
📖
TMomemt
💻
Eric Lewis
💻 📖
Daniel Vicory
💻 📖
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
## License
MIT
## Translations
This readme is available in:
- [Brazilian portuguese](docs/README.portuguese.md)
[lean-core-issue]: https://github.com/facebook/react-native/issues/23313