Yegor

Results 183 comments of Yegor

For the second scenario I'm imagining Flutter would provide a JavaScript API that pings a callback with the current loading status, something like: ```javascript window.flutter.addEventListener('load', (status) => { status.progress; //...

... actually `status.action` might need to be `status.actions` as we may be doing multiple things in parallel.

Yes, we launched `flutter.js` in Flutter 3, along with a sample loading animation in the standard template. The API also supports custom interactive landing pages, where, for example, the user...

Retroactively assigning to @ditman who actually implemented this.

We're drowning in flutter triage bot traffic. Resetting the triage bot timer.

/cc @jonahwilliams What are your thoughts on this?

Our out-of-the-box experience is not polished yet. A workaround is to write your own service worker. There are some guidelines around making PWAs offline-capable: - https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps/Offline_Service_workers - https://developers.google.com/web/ilt/pwa/offline-quickstart However, we...

Update: CanvasKit is now bundled with the app and can be used instead of the unpkg.com CDN, which will allow the browser to cache it for offline access. However, fallback...