File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
modules/ensemble/lib/widget/webview/native Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,6 @@ class WebViewState extends EWidgetState<EnsembleWebView> with CookieMethods {
233
233
() => widget.controller.error = "Error loading html content" );
234
234
},
235
235
onCreateWindow: (controller, createWindowAction) async {
236
- print ('onCreateWindow: ${createWindowAction .request .url }' );
237
236
// Get the URL from the creation request
238
237
final url = createWindowAction.request.url? .toString ();
239
238
if (url != null ) {
@@ -244,8 +243,6 @@ class WebViewState extends EWidgetState<EnsembleWebView> with CookieMethods {
244
243
},
245
244
shouldOverrideUrlLoading: (controller, navigationAction) async {
246
245
final url = navigationAction.request.url? .toString () ?? '' ;
247
- print ('shouldOverrideUrlLoading: $url ' );
248
- // Rest of your existing navigation handling
249
246
WebViewNavigationEvent event = WebViewNavigationEvent (widget, url);
250
247
if (widget.controller.onNavigationRequest != null ) {
251
248
ScreenController ().executeAction (
You can’t perform that action at this time.
0 commit comments