agility_redux 1.0.0 copy "agility_redux: ^1.0.0" to clipboard
agility_redux: ^1.0.0 copied to clipboard

Agility Redux is a modular, pluggable Redux state management library.

example/lib/main.dart

abstract class C {
  void foo();
}

class A extends C with E, B, D {
  int out1() {
    return _inner1();
  }

  int out2() {
    return _inner2();
  }

  @override
  void foo() {
    // TODO: implement foo
  }
}

class B {
  int _inner1() {
    return 1;
  }
}

class D {
  int _inner2() {
    return 2;
  }
}

class E {
  int i = 0;
}

void main() {
  print('hello, world!');
}

int hello() {
  if (1 > 2) {
    print('3');
  }
  return 1;
}
0
likes
115
pub points
0%
popularity

Publisher

verified publishersongfei.org

Agility Redux is a modular, pluggable Redux state management library.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

logging, meta, rxdart, stack_trace

More

Packages that depend on agility_redux