16 lines
382 B
Dart
16 lines
382 B
Dart
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:hoshan/data/model/auth/auth_screens_enum.dart';
|
|
|
|
class AuthScreensCubit extends Cubit<AuthScreens> {
|
|
AuthScreensCubit() : super(AuthScreens.mobile);
|
|
|
|
String username = '';
|
|
String password = '';
|
|
String otp = '';
|
|
bool isNew = false;
|
|
|
|
void changeState(AuthScreens authScreens) {
|
|
emit(authScreens);
|
|
}
|
|
}
|