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();