From 7281794fcf9e179ac9278be0a8a9586e66482afb Mon Sep 17 00:00:00 2001 From: Vaibhav Surve Date: Fri, 9 May 2025 10:19:23 +0530 Subject: [PATCH] Remove commented-out action buttons from employee list table --- lib/view/dashboard/employee_screen.dart | 44 ++++++++++++------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/lib/view/dashboard/employee_screen.dart b/lib/view/dashboard/employee_screen.dart index ae083ae..27f3ce4 100644 --- a/lib/view/dashboard/employee_screen.dart +++ b/lib/view/dashboard/employee_screen.dart @@ -186,8 +186,8 @@ class _EmployeeScreenState extends State with UIMixin { DataColumn(label: MyText.labelLarge('Name', color: contentTheme.primary)), DataColumn( label: MyText.labelLarge('Contact', color: contentTheme.primary)), - DataColumn( - label: MyText.labelLarge('Actions', color: contentTheme.primary)), + // DataColumn( + // label: MyText.labelLarge('Actions', color: contentTheme.primary)), ]; final rows = @@ -217,26 +217,26 @@ class _EmployeeScreenState extends State with UIMixin { ], ), ), - DataCell( - Row( - children: [ - IconButton( - icon: const Icon(Icons.visibility), - tooltip: 'View', - onPressed: () { - // View employee action - }, - ), - IconButton( - icon: const Icon(Icons.edit), - tooltip: 'Edit', - onPressed: () { - // Edit employee action - }, - ), - ], - ), - ), + // DataCell( + // Row( + // children: [ + // IconButton( + // icon: const Icon(Icons.visibility), + // tooltip: 'View', + // onPressed: () { + // // View employee action + // }, + // ), + // IconButton( + // icon: const Icon(Icons.edit), + // tooltip: 'Edit', + // onPressed: () { + // // Edit employee action + // }, + // ), + // ], + // ), + // ), ], ); }).toList();