We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4622bb commit 28d6331Copy full SHA for 28d6331
packages/desktop_webview_window/CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 0.1.2 (2021/11/24)
2
+
3
+fix TitleBar reload do not work.
4
5
## 0.1.1 (2021/11/24)
6
7
fix window title not show on macOS
packages/desktop_webview_window/lib/src/title_bar.dart
@@ -73,7 +73,7 @@ mixin TitleBarWebViewController {
73
74
/// reload the webview
75
void reload() {
76
- _channel.invokeMethod('onReloadPressed', {
+ _channel.invokeMethod('onRefreshPressed', {
77
'webViewId': _webViewId,
78
});
79
}
packages/desktop_webview_window/pubspec.yaml
@@ -1,6 +1,6 @@
name: desktop_webview_window
description: Show a webview window on your flutter deksktop application.
-version: 0.1.1
+version: 0.1.2
homepage: https://github.com/MixinNetwork/flutter-plugins/tree/main/packages/desktop_webview_window
environment:
0 commit comments