new project stable version
This commit is contained in:
15
lib/presentation/event/spalsh_event.dart
Normal file
15
lib/presentation/event/spalsh_event.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
abstract class SplashEvent extends Equatable {
|
||||
const SplashEvent();
|
||||
|
||||
@override
|
||||
List<Object> get props => [];
|
||||
}
|
||||
|
||||
// Событие, которое будет отправляться со SplashScreen
|
||||
class AuthCheckRequested extends SplashEvent {}
|
||||
|
||||
class AuthStarted extends SplashEvent {}
|
||||
|
||||
class PinVerificationSuccess extends SplashEvent {}
|
||||
Reference in New Issue
Block a user