Skip to content

Commit acb83c2

Browse files
committed
removed prints
1 parent f3a8441 commit acb83c2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

modules/ensemble/lib/widget/webview/native/webviewstate.dart

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,6 @@ class WebViewState extends EWidgetState<EnsembleWebView> with CookieMethods {
233233
() => widget.controller.error = "Error loading html content");
234234
},
235235
onCreateWindow: (controller, createWindowAction) async {
236-
print('onCreateWindow: ${createWindowAction.request.url}');
237236
// Get the URL from the creation request
238237
final url = createWindowAction.request.url?.toString();
239238
if (url != null) {
@@ -244,8 +243,6 @@ class WebViewState extends EWidgetState<EnsembleWebView> with CookieMethods {
244243
},
245244
shouldOverrideUrlLoading: (controller, navigationAction) async {
246245
final url = navigationAction.request.url?.toString() ?? '';
247-
print('shouldOverrideUrlLoading: $url');
248-
// Rest of your existing navigation handling
249246
WebViewNavigationEvent event = WebViewNavigationEvent(widget, url);
250247
if (widget.controller.onNavigationRequest != null) {
251248
ScreenController().executeAction(

0 commit comments

Comments
 (0)