Guillaume Roux

Results 35 comments of Guillaume Roux

IMO we can replace with a `TweenAnimationBuilder` the use of the `AnimationController` seems too specific.

Yeah, just to give a bit more context here's my sample: Code sample ```dart class Issue1358Page extends StatefulWidget { const Issue1358Page({Key? key}) : super(key: key); @override State createState() => _Issue1358PageState();...

I find it a bit cumbersome to have to specify `goldenTest(loadFonts: false)` every time when you might want to disable it globally. Maybe you could consider injecting the `loadFonts` value...

> Defining env variable is maybe not perfect. If someone forgot it or just run flutter test, he can encounter issues. True, maybe adding a property to `AlchemistConfig` or `PlatformGoldensConfig`...

@JoshJuncker I've been able to fix this behavior by doing the following: - Download the Google font [Noto Color Emoji](https://fonts.google.com/noto/specimen/Noto+Color+Emoji) - Add the font to your app and include it...

@joosakle have you made any configuration to enforce the usage of the canvaskit renderer for the web build? By default it is dynamic and Safari on iOS will use the...

Do you have a minimal reproducible example of your issue? It might an issue directly with the fact that we manipulate an uri using strings instead of the `Uri` object,...

Well, I'm not objective for this kind of thing as I've always used `LatLng` on the different projects I've been working on and never felt the need to use cartesian...

Don't have any issue either but this will be quite the breaking change I think 🤔

Yeah and it will also break all the plugins depending on flutter_map. If we want to do it iteratively we'll have to create methods that would use our new latlong...