cubit 0.0.14 cubit: ^0.0.14 copied to clipboard
Cubit is a lightweight state management solution. It is a subset of the bloc package that does not rely on events and instead uses methods to emit new states.
Cubit is a lightweight state management solution. It is a subset of the bloc package that does not rely on events and instead uses methods to emit new states.
Every cubit
requires an initial state which will be the state of the cubit
before emit
has been called.
The current state of a cubit
can be accessed via the state
getter.
Creating a Cubit #
class CounterCubit extends Cubit<int> {
CounterCubit() : super(0);
void increment() => emit(state + 1);
}
Using a Cubit #
void main() async {
final cubit = CounterCubit()..increment();
await cubit.close();
}
Dart Versions #
- Dart 2: >= 2.7.0
Maintainers #
Starware #
Cubit is Starware.
This means you're free to use the project, as long as you star its GitHub repository.
Your appreciation makes us grow and glow up. ⭐