Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[desktop_webview_window] Can't open URL about:srcdoc on macOS #357

Open
duarte-costa opened this issue Aug 16, 2024 · 0 comments
Open

[desktop_webview_window] Can't open URL about:srcdoc on macOS #357

duarte-costa opened this issue Aug 16, 2024 · 0 comments

Comments

@duarte-costa
Copy link

Can't open URL about:srcdoc on macOS...
Is there any reason why the URL "about" is not on the scheme guard block?
Thank you.

On WebViewLayoutController.swift:

extension WebViewLayoutController: WKNavigationDelegate {
  func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
    guard let url = navigationAction.request.url else {
      decisionHandler(.cancel)
      return
    }

    guard ["http", "https", "file"].contains(url.scheme?.lowercased() ?? "") else {
      decisionHandler(.cancel)
      return
    }

    methodChannel.invokeMethod("onUrlRequested", arguments: [
      "id": viewId,
      "url": url.absoluteString,
    ] as [String: Any])

    decisionHandler(.allow)
  }

Version:

  • Flutter Version: v3.24.0
  • OS: macOS
  • plugin: desktop_webview_window: 0.2.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant