13 lines
359 B
Dart
13 lines
359 B
Dart
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
class IntroScreensState {
|
|
final int currentPage;
|
|
IntroScreensState({required this.currentPage});
|
|
}
|
|
|
|
class IntroScreensCubit extends Cubit<IntroScreensState> {
|
|
IntroScreensCubit() : super(IntroScreensState(currentPage: 0));
|
|
|
|
void updatePage(int index) => emit(IntroScreensState(currentPage: index));
|
|
}
|