Open
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #663 +/- ##
==========================================
+ Coverage 50.88% 50.98% +0.10%
==========================================
Files 167 168 +1
Lines 3797 3789 -8
==========================================
Hits 1932 1932
+ Misses 1865 1857 -8 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| login(event.data); | ||
| } | ||
| }); | ||
| void helloAssoCallback2(String fundingUrl) async { |
Member
There was a problem hiding this comment.
Can you remove the 2 please 😄
…stically (most events aren't "stringifiable")
Rotheem
approved these changes
Mar 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Just for the fun of having the web version as fast as the mobile ones.
Enregistrement.de.l.ecran.2026-03-07.011012.mp4
The dream of Titan web loading consistently in less than 4s is achieved:
Enregistrement.de.l.ecran.2026-03-07.142812.mp4
Summary
Part 3/3 of #646: use WASM builds (part 1 was serving files compressed ahead-of-time, part 2 was ensuring every page is loaded lazily)
Note on COOP/COEP headers: these two same headers are used both to multithread WASM-compiled apps and to enable/disable cross-origin isolation, which we CANNOT support (because this breaks popup behavior, so impossible to log in and to fund with HelloAsso, which are basically our two most used features).
See sources below and issues (this is not my 1st attempt at supporting WebAssembly in dev & build):
Issues/PR dependencies
Issues to be resolved
--wasmdart-lang/web#517--wasmshouldn't setwindow.crossOriginIsolatedto true flutter/flutter#182002Required PRs
--no-cross-origin-isolation, it's the only way to make it work in dev (withflutter run)Changes Made
--wasm --no-cross-origin-isolation(e.g. flutter run --dart-define=flavor=alpha --wasm --no-cross-origin-isolation)Classification
Type of Change
Impact & Scope
Testing
Documentation
//Inline comments