Mehmet Fidanboylu
Mehmet Fidanboylu
`Image.network` uses dart:io `HttpClient` directly. Any change that exists only in package:http won't help. We are facing a similar dilemma because we want to use Cronet on Android for all...
I am a bit skeptical about this living in the linter itself. We want library specific lints but I believe these should live in the library itself. The library owner...
FTR, there's a possibility for cross-pollination here: https://github.com/bigflood/dartexif
This came up internally as well as a question. Could we get a comment on the difficulty of this request? It feels like a fairly large one to be able...
Perhaps then the problem is our understanding of the parameters for Text. When we don't want text to wrap (but instead clip) we use `maxLines` parameter, which is a standard...
Add some way to go into a "normal" execution mode, and then back into being controlled by fake async
Doesn't this invalidate the use case for fake_async? Why use it at all?
Add some way to go into a "normal" execution mode, and then back into being controlled by fake async
Ah. That's currently possible in flutter_test via `runAsync`. ``` await tester.runAsync(() { // Code runs in normal event loop }); ```
Add some way to go into a "normal" execution mode, and then back into being controlled by fake async
Yep. That was the original motivation why I was looking into running setup/teardown in consistent zones. ``` setup(() { // runs in real async // some service gets created which...
Yes, we would need this at the granularity of test for `flutter_test` use case. It creates a new `FakeAsync` object per test to ensure isolation.