Blame view

lib/pages/section/bloc/section_state.dart 396 Bytes
2187c85f   吴启风   feat:课程结构调整
1
  part of 'section_bloc.dart';
60e47f7c   liangchengyou   feat:课程选择功能
2
3
  
  @immutable
2187c85f   吴启风   feat:课程结构调整
4
  abstract class SectionState {}
60e47f7c   liangchengyou   feat:课程选择功能
5
  
2187c85f   吴启风   feat:课程结构调整
6
  class LessonInitial extends SectionState {}
13e6d11d   liangchengyou   feat:首页课程模块接口
7
  
2187c85f   吴启风   feat:课程结构调整
8
  class LessonDataLoadState extends SectionState {}
3c1d5c64   liangchengyou   feat:练习功能完成
9
  
3ba925a9   吴启风   feat:环节页增加翻页切换单元效果
10
  class RequestEnterClassState extends SectionState {
934e2b47   liangchengyou   feat:权限调整+课程进度接口对接
11
12
    final String courseLessonId;
    final int courseType;
3ba925a9   吴启风   feat:环节页增加翻页切换单元效果
13
14
  
    RequestEnterClassState(this.courseLessonId, this.courseType);
3c1d5c64   liangchengyou   feat:练习功能完成
15
  }
3ba925a9   吴启风   feat:环节页增加翻页切换单元效果
16
17
  
  class CurrentPageIndexState extends SectionState {}