Skip to content

An extension to riverpod which adds automatic undo and redo support to riverpod states.

License

Notifications You must be signed in to change notification settings

gaganyadav80/replay_riverpod

Repository files navigation

Pub Star on Github style: effective dart Flutter Website Awesome Flutter Flutter Samples License: MIT

An extension to package:riverpod which adds automatic undo and redo support to riverpod states.

Like package:replay_bloc.

Learn more at riverpod.dev!


Creating a ReplayStateNotifier

class CounterNotifer extends ReplayStateNotifier<int> {
  CounterNotifer() : super(0);

  void increment() => emit(state + 1);
}

Using a CounterNotifer

void main() {
  final notifier = CounterNotifer();

  // trigger a state change
  notifier.increment();
  print(notifier.state); // 1

  // undo the change
  notifier.undo();
  print(notifier.state); // 0

  // redo the change
  notifier.redo();
  print(notifier.state); // 1
}

ReplayStateNotifierMixin

If you wish to be able to use a ReplayStateNotifier in conjuction with a different type of state notifier like HydratedStateNotifier available with the package package:hydrated_riverpod, you can use the ReplayStateNotifierMixin.

class CounterNotifier extends HydratedStateNotifier<int> with ReplayStateNotifierMixin {
  CounterNotifier() : super(0);

  void increment() => emit(state + 1);
  void decrement() => emit(state - 1);

  @override
  int fromJson(Map<String, dynamic> json) => json['value'] as int;

  @override
  Map<String, int> toJson(int state) => {'value': state};
}

About

An extension to riverpod which adds automatic undo and redo support to riverpod states.

Topics

Resources

License

Stars

Watchers

Forks