You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
707 B
26 lines
707 B
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:my_flutter_puzzle/cubits/base_cubit_type.dart';
|
|
|
|
class CountDownTimerCubit extends Cubit<BaseCubitType<CountDownTimerState>> {
|
|
CountDownTimerCubit()
|
|
: super(
|
|
BaseCubitType(
|
|
eventName: CountDownTimerState.empty,
|
|
),
|
|
);
|
|
|
|
void empty() => emit(BaseCubitType(eventName: CountDownTimerState.empty));
|
|
|
|
void start() => emit(BaseCubitType(eventName: CountDownTimerState.start));
|
|
|
|
void stop() => emit(BaseCubitType(eventName: CountDownTimerState.stop));
|
|
|
|
void reset() => emit(BaseCubitType(eventName: CountDownTimerState.reset));
|
|
}
|
|
|
|
enum CountDownTimerState {
|
|
empty,
|
|
start,
|
|
stop,
|
|
reset,
|
|
}
|