Jonathan Kao

Results 5 comments of Jonathan Kao

Any updates on this issue? Running into the exact issue @dspacejs described

I cloned your codebase and was unable to replicate the behavior you described. Maybe try investigating your Flutter/dependency versioning?

The problem appears to stem from using Future.microtask() to handle navigation. ```dart Future.microtask(() async { await Navigator.of(context).push(ExampleWebView.route()); }); ``` Here's an easy fix (no progress indicator): ```dart class _OnboardingUsageState extends...

Also having this issue

How would snapshottest know to compare response.json() and not the stringified versions? I think this is the intended behavior, your second snippet seems to be working correctly