55
66from .types import (
77 RequestMethod ,
8- WebviewConsoleMessageEvent ,
9- WebviewJavaScriptEvent ,
10- WebviewScrollEvent ,
8+ WebViewConsoleMessageEvent ,
9+ WebViewJavaScriptEvent ,
10+ WebViewScrollEvent ,
1111)
1212
1313__all__ = ["WebView" ]
@@ -88,7 +88,7 @@ class WebView(ft.ConstrainedControl):
8888 Works only on the following platforms: iOS, Android and macOS.
8989 """
9090
91- on_scroll : ft .OptionalEventCallable [WebviewScrollEvent ] = None
91+ on_scroll : ft .OptionalEventCallable [WebViewScrollEvent ] = None
9292 """
9393 Fires when the web page's scroll position changes.
9494
@@ -98,7 +98,7 @@ class WebView(ft.ConstrainedControl):
9898 Works only on the following platforms: iOS, Android and macOS.
9999 """
100100
101- on_console_message : ft .OptionalEventCallable [WebviewConsoleMessageEvent ] = None
101+ on_console_message : ft .OptionalEventCallable [WebViewConsoleMessageEvent ] = None
102102 """
103103 Fires when a log message is written to the JavaScript console.
104104
@@ -108,7 +108,7 @@ class WebView(ft.ConstrainedControl):
108108 Works only on the following platforms: iOS, Android and macOS.
109109 """
110110
111- on_javascript_alert_dialog : ft .OptionalEventCallable [WebviewJavaScriptEvent ] = None
111+ on_javascript_alert_dialog : ft .OptionalEventCallable [WebViewJavaScriptEvent ] = None
112112 """
113113 Fires when the web page attempts to display a JavaScript alert() dialog.
114114
0 commit comments