Jose Georges

Results 18 comments of Jose Georges

I believe it'll be better to inject it through the router's constructor (I'm currently trying to change my app structure to something similar)

Have you been able to resolve the issue? I'm having the same error and I'm thinking it has to do with the redis config

If I downgrade in the Podfile.lock to 2.2.0 it tells me that tflite 1.1.1 depends on 2.3.0 and it fails to run pod install.

I was thinking on adding something like this to the mixin: ``` FormzStatus _status = FormzStatus.pure; Future onSubmit(); Future get submit => _onUserSubmit(onSubmit()); _onUserSubmit(Future onSubmit) async { assert(onSubmit != null);...

Just had that happening to me as well. They do hide in the Android build but not on the iOS build

@rrousselGit Can `ProviderScope` be added anywhere in the tree? instead of as the root widget? I'm creating an internal package for my team and I'm planning to use riverpod, but...

so I'll create a widget that exposes ProviderScope then and have them add it to the root. Would you agree?