feronetick

Results 3 comments of feronetick

In my case I started to use two helpers. For merge async values: ```dart AsyncValue merge(Iterable values) { final List data = []; for (final value in values) { if...

@rrousselGit What do you think about something like this: ```dart final exampleModelProvider = AsyncProvider((ref) { final history = ref.unwrap(historyProvider); final favorites = ref.unwrap(favoritesProvider); return ExampleModel( history: history, favorites: favorites, );...

For this case we use this workaround: ```dart class FlowPage extends Page { const FlowPage({ required this.child, this.maintainState = true, this.onPop, super.key, super.name, super.arguments, super.restorationId, }); final Widget child; final...