import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:sk_base_mobile/constants/bg_color.dart'; import 'package:sk_base_mobile/constants/data.dart'; import 'package:sk_base_mobile/screens/home/components/task_detail_col.dart'; import 'package:sk_base_mobile/screens/home/home_controller.dart'; import 'package:sk_base_mobile/util/util.dart'; class TaskDetailContainer extends StatelessWidget { TaskDetailContainer({super.key, required this.index, required this.ind}); final int index; final int ind; final controller = Get.put(HomeController()); @override Widget build(BuildContext context) { return Dismissible( key: UniqueKey(), confirmDismiss: (direction) async { return await ModalUtil.showWarningDialog( 'Remove Task', 'Are you sure to remove this task', 'Confirm', () { controller.db.delete(controller.list[ind][index].key, 'Tasks'); controller.list[ind].remove(controller.list[ind][index]); }); }, child: Container( margin: const EdgeInsets.symmetric(vertical: 10, horizontal: 20), padding: const EdgeInsets.symmetric(horizontal: 10), decoration: BoxDecoration(boxShadow: [ BoxShadow( color: lightAccentBlue.withOpacity(.5), offset: Offset(0, 5), blurRadius: 10), ], color: Colors.white, borderRadius: BorderRadius.circular(30)), child: Row( children: [ Image.asset( Data().images[controller.list[ind][index].image], height: 100, width: 100, ), const Spacer( flex: 1, ), TaskTitle(index: index, ind: ind), const Spacer( flex: 2, ), controller.list[ind][index].status == 'complete' ? Container( height: 40, width: 40, decoration: const BoxDecoration( shape: BoxShape.circle, gradient: LinearGradient( begin: Alignment.topCenter, end: Alignment.bottomCenter, colors: [ lightOrange, darkOrange, ]), boxShadow: [ BoxShadow( color: lightOrange, offset: Offset(0, 10), blurRadius: 10) ]), child: const Icon( Icons.done, color: Colors.white, ), ) : Align( alignment: Alignment.topRight, child: Padding( padding: const EdgeInsets.only(top: 20), child: PopupMenuButton( onSelected: (value) => controller.onTaskComplete( value, index, ind, controller.list[ind][index].key, context), surfaceTintColor: Colors.white, padding: EdgeInsets.zero, icon: const Icon( Icons.more_vert_rounded, color: Colors.grey, size: 24, ), shape: OutlineInputBorder( borderRadius: BorderRadius.circular(10), borderSide: BorderSide.none, ), itemBuilder: (context) { return [ const PopupMenuItem( height: 25, value: 1, child: Row( children: [ Icon( Icons.edit_note, color: Colors.orange, size: 14, ), SizedBox( width: defaultPadding / 2, ), Text('Edit') ], )), const PopupMenuItem( height: 25, value: 2, child: Row( children: [ Icon( Icons.delete_outline, color: Colors.orange, size: 14, ), SizedBox( width: defaultPadding / 2, ), Text('Delete') ], )), const PopupMenuItem( height: 25, value: 3, child: Row( children: [ Icon( Icons.done_all_outlined, color: Colors.orange, size: 14, ), SizedBox( width: defaultPadding / 2, ), Text('Complete') ], )), ]; }, )), ), ], ), ), ); } }