feat(mobile): #24 Flutter三合一APP骨架搭建

- Flutter 3.x 项目初始化(pubspec.yaml + 目录结构)
- 核心依赖:dio/go_router/provider/shared_preferences/hive/geolocator
- 统一登录页 + Token管理(TokenService + AuthInterceptor)
- 底部Tab三合一导航(供水/巡检/营收)
- 供水管理Tab:监测数据列表(MonitorListPage)
- 巡检Tab:任务列表+状态筛选+进度展示(PatrolTaskListPage)
- 营收Tab:抄表页面+账单列表(MeterReadingPage/BillListPage)
- 消息推送服务(PushService)
- GPS定位服务(LocationService)
- 拍照/相册服务(CameraService)
- 离线缓存服务(CacheService)
- Android/iOS打包配置+权限声明
- GoRouter路由+Auth认证守卫
- Provider状态管理
This commit is contained in:
2026-06-15 08:52:55 +08:00
parent 37bcc78eee
commit d9d72405c6
41 changed files with 3014 additions and 0 deletions
@@ -0,0 +1,57 @@
import 'package:flutter/material.dart';
import '../../water_supply/pages/monitor_list_page.dart';
import '../../patrol/pages/patrol_task_list_page.dart';
import '../../revenue/pages/meter_reading_page.dart';
/// 主页面 - 底部三Tab导航(供水/巡检/营收)
class MainShellPage extends StatefulWidget {
const MainShellPage({super.key});
@override
State<MainShellPage> createState() => _MainShellPageState();
}
class _MainShellPageState extends State<MainShellPage> {
int _currentIndex = 0;
final List<Widget> _pages = const [
MonitorListPage(),
PatrolTaskListPage(),
MeterReadingPage(),
];
@override
Widget build(BuildContext context) {
return Scaffold(
body: IndexedStack(
index: _currentIndex,
children: _pages,
),
bottomNavigationBar: BottomNavigationBar(
currentIndex: _currentIndex,
onTap: (index) {
setState(() {
_currentIndex = index;
});
},
type: BottomNavigationBarType.fixed,
selectedItemColor: const Color(0xFF1976D2),
unselectedItemColor: Colors.grey,
items: const [
BottomNavigationBarItem(
icon: Icon(Icons.water_drop),
label: '供水管理',
),
BottomNavigationBarItem(
icon: Icon(Icons.assignment),
label: '巡检',
),
BottomNavigationBarItem(
icon: Icon(Icons.receipt_long),
label: '营收',
),
],
),
);
}
}