built_redux icon indicating copy to clipboard operation
built_redux copied to clipboard

an implementation of redux written in dart that enforces immutability

Results 26 built_redux issues
Sort by recently updated
recently updated
newest added

I have no idea if this is a valid solution (I need to test it with a nnbd project) but this fixed my build on a non-null-safe repo. First noted...

Version 7.5.11 works fine, but I have to override dependencies to use it. Minimal reproducible example: ```dart abstract class HomeActions implements ReduxActions { HomeActions._(); factory HomeActions() = _$HomeActions; } abstract...

## 7.5.12 * tighten analyzer to require ^0.39.0 * fix analyzer deprecations

the test deppendency is add in `pubspec.yaml` ```yaml dependencies: test: xxx ```

Looking at the example in flutter_built_redux we see this: class ConnectionExample extends StatelessWidget { final Store store; I have a problem with this in that it is exposing internal details...

I kown you can add function `addAll` to MiddlewareBuilder. But I have found it in MiddlewareBuilder. Why not add this function. I don't want to invoke `add` function every time...

It looks like if a reducer handles an action, another reducer who wants to handle the same action is not called anymore. This might be a flaw in the current...