Joseph Winningham

Results 6 comments of Joseph Winningham

It sounds like what you need is to create your own custom widget. It is possible without changes to Flutter. For example: ```dart abstract class DataListener extends StatefulWidget { const...

> making the assumption that the build methods would be called hierarchically down the widget tree It won't work that way. Every widget that uses your ValueNotifier will need to...

To me, a case expression would be most useful in obtaining a boolean for whether an object is a match to a certain pattern. Where a case expression could give...

I'm able to reproduce the issue on both Flutter 3.22.2 as well as master

I believe the issue is because the PlatformAssetBundle uses a cache from the asset key to a Future and because the Future is created in a different widget test, it's...

@darshankawar Hi, unfortunately that won't work because I don't have access to the AssetImage to evict it from the cache. Let me give you a more specific example. Here is...