import 'dart:async'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:get/get.dart'; import 'package:wgshare/common/models/user_info_detail.dart'; import 'package:wgshare/common/store/user_store.dart'; import 'package:wgshare/main.dart'; import 'package:wgshare/routes/app_routes.dart'; import 'package:wgshare/utils/my_text.dart'; import 'package:wgshare/utils/storage.dart'; import '../../utils/color_util.dart'; import 'home_logic.dart'; class HomePage extends StatefulWidget { const HomePage({super.key}); @override State createState() => HomePageState(); } class HomePageState extends State with AutomaticKeepAliveClientMixin { final logic = Get.find(); final state = Get.find().state; Timer? _timer; @override bool get wantKeepAlive => true; @override void initState() { super.initState(); } @override Widget build(BuildContext context) { super.build(context); return Scaffold( appBar: AppBar( surfaceTintColor: Colors.white, elevation: 0, toolbarHeight: 0, systemOverlayStyle: const SystemUiOverlayStyle( statusBarColor: Colors.transparent, systemNavigationBarColor: Color(0xFF000000), systemNavigationBarIconBrightness: Brightness.light, statusBarIconBrightness: Brightness.dark, statusBarBrightness: Brightness.light, ), backgroundColor: Colors.white, ), body: Column( children: [ Container( width: double.infinity, height: 44.h, alignment: Alignment.center, color: Colors.white, child: Text( '会议列表', style: TextStyle( fontSize: 16.sp, color: ColorUtil.Color_51_51_51, fontWeight: FontWeight.w500 ), ), ), Expanded( child: Container( color: ColorUtil.Color_244_244_244, child: ListView.builder( itemBuilder: (context, index) { return Container( width: double.infinity, decoration: const BoxDecoration( borderRadius: BorderRadius.all(Radius.circular(6)), color: Colors.white, ), margin: EdgeInsets.only(top: index == 0 ? 20 : 12, bottom: index == 19 ? 20 : 0, left: 16, right: 16), padding: const EdgeInsets.all(12), child: Column( children: [ Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text( '奉节中学期末考试分析总结会议', style: TextStyle( fontSize: 14.sp, color: ColorUtil.Color_89_88_88, fontWeight: FontWeight.w500 ), ), Row( children: [ Image.asset( 'assets/images/index_persons.png', width: 16.w, height: 16.h, ), Text( '2人', style: TextStyle( fontSize: 12.sp, color: ColorUtil.Color_177_177_177, ), ), ], ) ], ), SizedBox(height: 20.h), Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Row( children: [ Text( '2525353', style: TextStyle( fontSize: 12.sp, color: ColorUtil.Color_177_177_177, ), ), SizedBox(width: 6.w), Image.asset( 'assets/images/index_copy.png', width: 16.w, height: 16.h, ) ], ), GestureDetector( child: Container( width: 78.w, height: 30.h, decoration: BoxDecoration( borderRadius: const BorderRadius.all(Radius.circular(6)), color: ColorUtil.Color_85_117_242, ), child: Row( mainAxisAlignment: MainAxisAlignment.center, children: [ Text( '进入', style: TextStyle( fontSize: 12.sp, color: Colors.white, ), ), Image.asset( 'assets/images/index_right.png', width: 16.w, height: 16.h, ) ], ), ), onTap: (){ Get.toNamed(Routes.meetingMainPage); // Navigator.of(context).push(MaterialPageRoute(builder: (context) => MeetingMainPage())); }, ) ], ) ], ), ); }, itemCount: 20, ), ), ) ], ) ); } @override void dispose() { Get.delete(); _timer?.cancel(); super.dispose(); } }