Ahmed Elsayed
Ahmed Elsayed
I've forgotten about this. PR is submitted now :)
I encounter the same issue when dealing with declarative pagination: https://dartpad.dev/?id=05d93f8e8c71368eab0c03fae4f77d79 As you can see in my sample, `current item` needs to watch `prev item` to handle pagination logic, which...
> it seems to be important that the NavigationDelegate (which the comment linked above suggests to create before creating > the WebView) is a member in the state class and...
Will this solve use cases when there's just a single mutation without the need of `build`? i.e: a LoginProvider use case which might be a FutureProvider. It will be triggered...
_Edit:_ check my updated [approach](https://github.com/AhmedLSayed9/deliverzler/blob/59001b77d4a82b5eaa66236a9d659a9bb0506676/lib/features/profile/presentation/providers/update_profile_image_provider.dart#L13). This an example of the 2nd approach using the 3 providers (which was recommended before on Discord): ``` final selectedProfileImageProvider = StateProvider.autoDispose((ref) { return null;...
Same issue here using flavors.
@RCVZ Do you also have empty inputs for "flutterfire upload-crashlytics-symbols" script?
The issue has been around for a long time ðŸ˜
Is it safe to use `UncontrolledProviderScope` for modals if we don't share scoped providers using `overrideWithValue`?
@justincbeck Remi mentioned that using `UncontrollerProviderScope` in main is fine, but in your case, I'd use basic `Provider` that just throws in the build and override it: ``` ProviderScope( overrides:...