From 41010df10f4f53b381e88e72400b33fdb16b1324 Mon Sep 17 00:00:00 2001 From: VE10-Sanjeev Date: Sat, 31 May 2025 17:49:22 +0530 Subject: [PATCH] tolltip for trips --- lib/Screens/allTrips/list_all_plans.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/Screens/allTrips/list_all_plans.dart b/lib/Screens/allTrips/list_all_plans.dart index 6e8c628..81ff48b 100644 --- a/lib/Screens/allTrips/list_all_plans.dart +++ b/lib/Screens/allTrips/list_all_plans.dart @@ -62,7 +62,6 @@ class _ListAllPlansState extends State { // }); // }); }); - // futurePlans = fetchPlans(); } @@ -764,6 +763,7 @@ class _ListAllPlansState extends State { Icons.remove_red_eye, color: Color(0xFF475569), size: 18), + tooltip: 'View Trips', onPressed: () { Navigator.pop( context); // Close popup manually @@ -788,6 +788,7 @@ class _ListAllPlansState extends State { icon: Icon( Icons.cancel_rounded, size: 18), + tooltip: 'Cancellation Trips', onPressed: () { Navigator.pop(context); deletePlan(plan.planId); @@ -797,6 +798,7 @@ class _ListAllPlansState extends State { icon: Icon(Icons.download, color: Color(0xFF114D8B), size: 18), + tooltip: 'Download Trips Detials', onPressed: () { Navigator.pop(context); apiService.getPdfDownload( @@ -809,6 +811,7 @@ class _ListAllPlansState extends State { color: Color(0xFF475569), size: 11, ), + tooltip: 'Trips Comments', onPressed: () { showDialog( context: context,