29 lines
713 B
Dart
29 lines
713 B
Dart
/// 现场上报模块 - 统一导出
|
|
///
|
|
/// 使用方式:
|
|
/// ```dart
|
|
/// import 'package:maibu_satabot_v2/features/v2/report/report.dart';
|
|
/// ```
|
|
|
|
// 常量
|
|
export 'presentation/constants/report_constants.dart';
|
|
|
|
// 状态
|
|
export 'presentation/states/report_state.dart';
|
|
|
|
// Cubit
|
|
export 'presentation/cubit/report_cubit.dart';
|
|
|
|
// 页面
|
|
export 'presentation/pages/report_page.dart';
|
|
|
|
// 组件
|
|
export 'presentation/widgets/report_type_selector.dart';
|
|
export 'presentation/widgets/device_selector.dart';
|
|
export 'presentation/widgets/description_input.dart';
|
|
export 'presentation/widgets/media_uploader.dart';
|
|
export 'presentation/widgets/level_selector.dart';
|
|
|
|
// 依赖注入
|
|
export 'di/report_di.dart';
|