Lorenzo Pichilli
Lorenzo Pichilli
Try this solution: https://github.com/pichillilorenzo/flutter_inappbrowser/issues/15#issuecomment-454083666
Didn't test it with Flutter 2.0.2 yet. However, because some dependencies currently used don't support null-safety, you should run it with the `--no-sound-null-safety` flag enabled.
Because of a bug from Flutter itself (see https://github.com/flutter/flutter/issues/77488), the latest flutter version that should be used with Android Hybrid Composition enabled is Flutter `1.27.0-4.0.pre`.
@Yokoi-K how are you using the service worker controller? can you post the piece of code on how you initialize and use it? Also, post the full error stacktrace please
@Yokoi-K that stacktrace is not full. Could you provide full stacktrace from the start please?
Ok, maybe I know how to fix that error
@Yokoi-K I have uploaded the new version `5.4.0+3` that should not call `setServiceWorkerClient` method (that is the method that causes the error) if you are not using the Service Worker...
Hi @jpsarda, the next version 6.0.0 will have support for Flutter Web. Actually, the "develop" branch of the repository is an unpublished "beta" version that already supports it: https://github.com/pichillilorenzo/flutter_inappwebview/tree/develop However,...
It uses iframes because it's the only way to do something similar to a WebView. However, the iframe has a lot of limitations! In fact, a lot of features simply...
For macOS, it should be easy, as `WKWebView` is the same as iOS. For Linux, I think we can use something like this: https://webkitgtk.org/. For Windows, we can use Microsoft...