diff --git a/website/docs/widgets/webview.md b/website/docs/widgets/webview.md new file mode 100644 index 00000000..2b138644 --- /dev/null +++ b/website/docs/widgets/webview.md @@ -0,0 +1,19 @@ +# WebView + +Mirai webView allows you to embed a web view of any link in your Flutter app using JSON, similar to the Flutter WebView package using JSON. +To know more about the WebView package in Flutter, refer to the [official documentation](https://pub.dev/packages/webview_flutter). + +## Properties + +| Property | Type | Description | +| -------- | -------- | ----------------------------------- | +| url | `string` | The URL to be loaded in the WebView | + +## Example JSON + +```json +{ + "type": "webView", + "url": "https://github.com/buildMirai/mirai" +} +```