Blame view

lib/pages/login/loginpage/bloc/login_state.dart 556 Bytes
2a29701f   liangchengyou   feat:提交代码
1
2
3
4
5
6
  part of 'login_bloc.dart';
  
  @immutable
  abstract class LoginState {}
  
  class LoginInitial extends LoginState {}
056970d8   Key   feat: api
7
  
c9df43c8   Key   feat: 修改个人信息、接口
8
  ///登录按钮状态
2a29701f   liangchengyou   feat:提交代码
9
  class LoginEventChangeState extends LoginState {}
056970d8   Key   feat: api
10
  
c9df43c8   Key   feat: 修改个人信息、接口
11
  ///切换登录方式
062f0df2   liangchengyou   feat:登录模块代码提交
12
  class LoginTypeChangeState extends LoginState {}
056970d8   Key   feat: api
13
  
e1f36554   liangchengyou   feat:调整状态监听逻辑
14
  ///发送验证码按钮状态
062f0df2   liangchengyou   feat:登录模块代码提交
15
  class SmsSendTypeChangeState extends LoginState {}
056970d8   Key   feat: api
16
  
e1f36554   liangchengyou   feat:调整状态监听逻辑
17
  ///是否同意协议
062f0df2   liangchengyou   feat:登录模块代码提交
18
  class AgreementTypeChangeState extends LoginState {}
05f9b20a   Key   fixed: api调用方式,未完善
19
  
7912b3f7   liangchengyou   feat:更新代码
20
  ///获取验证码
05f9b20a   Key   fixed: api调用方式,未完善
21
  class SmsCodeRequestState extends LoginState {}
056970d8   Key   feat: api
22
  
c9df43c8   Key   feat: 修改个人信息、接口
23
  ///登录请求结果
aa4e28be   Key   removed: cache_bl...
24
  class LoginResultChangeState extends LoginState {}