File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
flutter_inappwebview_windows Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.5.0+2
2
+
3
+ - Fixed ` InAppWebViewController.callAsyncJavaScript ` not working with JSON objects
4
+
1
5
## 0.5.0+1
2
6
3
7
- Fixed ` onLoadResourceWithCustomScheme ` WebView event called every time
Original file line number Diff line number Diff line change 1
1
name : flutter_inappwebview_windows
2
2
description : Windows implementation of the flutter_inappwebview plugin.
3
- version : 0.5.0+1
3
+ version : 0.5.0+2
4
4
homepage : https://inappwebview.dev/
5
5
repository : https://github.com/pichillilorenzo/flutter_inappwebview/tree/master/flutter_inappwebview_windows
6
6
issue_tracker : https://github.com/pichillilorenzo/flutter_inappwebview/issues
Original file line number Diff line number Diff line change @@ -1283,7 +1283,8 @@ namespace flutter_inappwebview_plugin
1283
1283
1284
1284
nlohmann::json parameters = {
1285
1285
{" expression" , source},
1286
- {" awaitPromise" , true }
1286
+ {" awaitPromise" , true },
1287
+ { " returnByValue" , true }
1287
1288
};
1288
1289
1289
1290
if (contextId >= 0 ) {
You can’t perform that action at this time.
0 commit comments