First draft of Onboarding page
This commit is contained in:
16
lib/screens/onboarding/bloc/onboarding_event.dart
Normal file
16
lib/screens/onboarding/bloc/onboarding_event.dart
Normal file
@@ -0,0 +1,16 @@
|
||||
//part of 'onboarding_bloc.dart';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
@immutable
|
||||
abstract class OnboardingEvent {}
|
||||
|
||||
class PageChangedEvent extends OnboardingEvent {
|
||||
|
||||
}
|
||||
|
||||
class PageSwipedEvent extends OnboardingEvent {
|
||||
final int index;
|
||||
|
||||
PageSwipedEvent({required this.index});
|
||||
}
|
||||
Reference in New Issue
Block a user