cedvdb

Results 216 comments of cedvdb
trafficstars

assets are dwnloaded separately. Http2 parallelism and browser caching are some of the things you give up on the web by putting the svg inside your dart code.

Can you elaborate on when and how this is detrimental ?

> Use case: a web page where other requests are being made at the same time, loading all the assets concurrently is not good for performance, it's better to let...

@domoritz tests have been changed, I modified the current test as there is already one for multiple examples under it. I think now it covers both scenarios. Current next branch...

@JoshuaCarter are you going to submit a PR ? It seems to me it should return { example: examples[0] } at the end if there is only one example.

Sorry for the late reply. Could you make a proposal ?

In what scenario would you not want to rebuild and wouldn't it be niche enough to just not use ValueListenableBuilder ?

Bump: this issue is still mislabeled as "blocked" Sample to trigger this issue: ```dart void main() async { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp( options: DefaultFirebaseOptions.currentPlatform, ); await FirebaseAppCheck.instance.activate( appleProvider: AppleProvider.appAttestWithDeviceCheckFallback, ); await...

> My approach with all 3rd party code, specially when it talks to platform implementations, is to always wrap it in a service class or similar you 100% control. I'm...