mark8044
mark8044
This makes alot of sense. I was wondering if you had any thoughts on something else, more along the image 404 lines: https://github.com/Baseflow/flutter_cache_manager/issues/439 Your PR https://github.com/Baseflow/flutter_cache_manager/pull/437 didn't work for my...
Having the same problems. This package is otherwise awesome except that you can't easily type into the field. Since that problem is at the core of this amazing package, that...
Would it be wrong to change `ref.watch(provider)` to always act as a `select` when an object is being hunted? for example: `ref.watch(myProvider('providerx')).username` is bad because any changes to other things...
Same issue but I don't understand about removing the scaffold. Doesn't seem to do anything (nor would you want to?)
The answer is that you should use `showCupertinoModalBottomSheet(...)` instead of `CupertinoScaffold.showCupertinoModalBottomSheet(...)`
This does work to override the native handler, but how would you use it to run in addition to the native handler? ==> Meaning you still want the image to...
That does work perfectly. thanks
This package has been outstanding. This feature would be very welcome (if this package is still considered maintained). Thank you
From my basic understanding of the issue after some research, its because the top level Scaffold might be getting those clicks and from the graphic you show, this project creates...
Here is a stripped down app to show what I mean ``` class MyApp extends StatelessWidget{ const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( home:...