Skip to content

Commit 04ed1c7

Browse files
committed
Minor README tweak and bump version to 0.1.0
1 parent 642620d commit 04ed1c7

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Platforms Supported
66

7-
* [x] iOS
7+
* [x] iOS (both UIWebView and WKWebView)
88
* [x] Android
99
* [ ] Windows 10 (coming soon)
1010

@@ -29,7 +29,8 @@ class MyWebComponent extends Component {
2929
render () {
3030
return (
3131
<WebView
32-
src={{uri: "https://infinite.red"}}
32+
useWebKit // to use WKWebView -- will be default at some point
33+
src={{uri: "https://infinite.red/react-native"}}
3334
style={{marginTop: 20}}
3435
/>
3536
)
@@ -47,7 +48,7 @@ Simply install React Native WebView and then use it in place of the core WebView
4748

4849
### Contributor Notes
4950

50-
* I've removed all PropTypes for now. Instead, we'll be moving toward Flow or TypeScript at some later date
51+
* I've removed all PropTypes for now. Instead, we'll be moving toward Flow or TypeScript at a later date
5152

5253
## Maintainers
5354

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "React Native WebView component for iOS, Android, and Windows 10",
44
"main": "index.js",
55
"author": "Jamon Holmgren <[email protected]>",
6-
"version": "0.0.1",
6+
"version": "0.1.0",
77
"peerDependencies": {
88
"react": "^16.0",
99
"react-native": "^0.56"

0 commit comments

Comments
 (0)