tolltip for trips

This commit is contained in:
VE10-Sanjeev 2025-05-31 17:49:22 +05:30
parent ac303e666f
commit 41010df10f

View File

@ -62,7 +62,6 @@ class _ListAllPlansState extends State<ListAllPlans> {
// }); // });
// }); // });
}); });
// futurePlans = fetchPlans(); // futurePlans = fetchPlans();
} }
@ -764,6 +763,7 @@ class _ListAllPlansState extends State<ListAllPlans> {
Icons.remove_red_eye, Icons.remove_red_eye,
color: Color(0xFF475569), color: Color(0xFF475569),
size: 18), size: 18),
tooltip: 'View Trips',
onPressed: () { onPressed: () {
Navigator.pop( Navigator.pop(
context); // Close popup manually context); // Close popup manually
@ -788,6 +788,7 @@ class _ListAllPlansState extends State<ListAllPlans> {
icon: Icon( icon: Icon(
Icons.cancel_rounded, Icons.cancel_rounded,
size: 18), size: 18),
tooltip: 'Cancellation Trips',
onPressed: () { onPressed: () {
Navigator.pop(context); Navigator.pop(context);
deletePlan(plan.planId); deletePlan(plan.planId);
@ -797,6 +798,7 @@ class _ListAllPlansState extends State<ListAllPlans> {
icon: Icon(Icons.download, icon: Icon(Icons.download,
color: Color(0xFF114D8B), color: Color(0xFF114D8B),
size: 18), size: 18),
tooltip: 'Download Trips Detials',
onPressed: () { onPressed: () {
Navigator.pop(context); Navigator.pop(context);
apiService.getPdfDownload( apiService.getPdfDownload(
@ -809,6 +811,7 @@ class _ListAllPlansState extends State<ListAllPlans> {
color: Color(0xFF475569), color: Color(0xFF475569),
size: 11, size: 11,
), ),
tooltip: 'Trips Comments',
onPressed: () { onPressed: () {
showDialog( showDialog(
context: context, context: context,