import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_svg/svg.dart'; import 'package:gen_service/Notifiers/generatorDetailsProvider.dart'; import 'package:provider/provider.dart'; import '../Utility/AppColors.dart'; class ScheduleListScreen extends StatefulWidget { final accId; final sessionId; final genId; const ScheduleListScreen({ super.key, required this.accId, required this.sessionId, required this.genId, }); @override State createState() => _ScheduleListScreenState(); } class _ScheduleListScreenState extends State { @override void initState() { // TODO: implement initState super.initState(); WidgetsBinding.instance.addPostFrameCallback((timeStamp) { final provider = Provider.of( context, listen: false, ); provider.fetchScheduleList(widget.accId, widget.sessionId,widget.genId); }); } @override Widget build(BuildContext context) { return Consumer( builder: (context, provider, child) { final isLoading = provider.isLoading; final error = provider.errorMessage; final response = provider.scheduleResponse; final data = response?.allScheduleServices??[]; if (isLoading) { return const Scaffold( backgroundColor: AppColors.backgroundRegular, body: Center( child: CircularProgressIndicator(color: AppColors.buttonColor), ), ); } if (error != null) { return Scaffold( backgroundColor: AppColors.backgroundRegular, body: Center( child: Text( error, style: const TextStyle(color: Colors.red, fontSize: 16), ), ), ); } if (data == null) { return const Scaffold( backgroundColor: AppColors.backgroundRegular, body: Center(child: Text("No data found.")), ); } return RefreshIndicator.adaptive( color: AppColors.amountText, onRefresh: () async { await Future.delayed(const Duration(milliseconds: 600)); }, child: Scaffold( backgroundColor: AppColors.backgroundRegular, body: CustomScrollView( physics: const BouncingScrollPhysics(), slivers: [ SliverAppBar( stretch: true, pinned: true, expandedHeight: 75, backgroundColor: AppColors.backgroundRegular, elevation: 0, // Remove shadow automaticallyImplyLeading: false, toolbarHeight: 0, // Remove toolbar space collapsedHeight: 0, // Completely collapse to 0 height flexibleSpace: FlexibleSpaceBar( stretchModes: const [StretchMode.fadeTitle], background: Container( decoration: BoxDecoration( gradient: AppColors.balanceBarGradientA, ), child: SafeArea( child: Padding( padding: const EdgeInsets.symmetric( horizontal: 16, vertical: 20, ), child: SizedBox( child: Row( mainAxisAlignment: MainAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.center, children: [ InkResponse( onTap: () { HapticFeedback.selectionClick(); Navigator.pop(context, true); }, child: SvgPicture.asset( "assets/svg/appbar_back.svg", height: 25, ), ), SizedBox(width: 10), Expanded( flex: 4, child: InkResponse( onTap: () { HapticFeedback.selectionClick(); Navigator.pop(context, true); }, child: Text( "Schedule List", overflow: TextOverflow.ellipsis, maxLines: 1, style: TextStyle( fontSize: 16, color: Colors.white, height: 1.1, ), ), ), ), ], ), ), ), ), ), ), ), SliverToBoxAdapter( child: Container( color: Color(0xFF4076FF), child: Container( decoration: const BoxDecoration( color: AppColors.backgroundRegular, borderRadius: BorderRadius.only( topLeft: Radius.circular(30), topRight: Radius.circular(30), ), ), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ SizedBox(height: 4), ListView.builder( shrinkWrap: true, physics: const NeverScrollableScrollPhysics(), itemCount: data!.length, itemBuilder: (context, j) { return Container( margin: const EdgeInsets.symmetric( vertical: 5, horizontal: 10, ), decoration: BoxDecoration( color: data[j].status == "Scheduled" ? Color(0xFFD7F0FF) : Color(0xFFE0E0E0), borderRadius: BorderRadius.circular(14), ), child: Column( children: [ Container( padding: const EdgeInsets.symmetric( vertical: 10, horizontal: 10, ), decoration: BoxDecoration( color: Colors.white, borderRadius: BorderRadius.circular(14), border: Border.all( color: data[j].status == "Scheduled" ? AppColors.buttonColor : Colors.white, ), ), child: Column( children: [ Row( mainAxisAlignment: MainAxisAlignment.start, children: [ if (data[j].status == "Scheduled") ...[ SvgPicture.asset( "assets/svg/calendar_ic.svg", ), SizedBox(width: 8), ], SizedBox( child: Column( children: [ if (data[j].status == "Completed") ...[ Text( data[j].complaintType ?? "-", style: TextStyle( fontSize: 14, color: AppColors .nearDarkText, ), ), ], Text( data[j].dueDate ?? "-", style: TextStyle( fontSize: data[j].status == "Scheduled" ? 14 : 12, color: data[j].status == "Scheduled" ? AppColors .nearDarkText : Color( 0xFF777777, ), ), ), ], ), ), Spacer(), Container( padding: EdgeInsets.symmetric( vertical: 3, horizontal: 5, ), decoration: BoxDecoration( borderRadius: BorderRadius.circular(8), color: data[j].status == "Scheduled" ? AppColors.successBG : Color(0xFFFFF8D2), ), child: Center( child: Text( data[j].status ?? "-", style: TextStyle( fontSize: 14, color: data[j].status == "Scheduled" ? AppColors .success : AppColors.error, ), ), ), ), ], ), ], ), ), if (data[j].status == "Scheduled") ...[ Container( padding: EdgeInsets.symmetric( vertical: 10, horizontal: 10, ), child: Row( mainAxisAlignment: MainAxisAlignment.center, children: [ Text( "Upcoming Service Scheduled", style: TextStyle( fontSize: 12, color: AppColors.buttonColor, ), ), ], ), ), ], ], ), ); }, ), ], ), ), ), ), ], ), ), ); }, ); } }