Vaibhav_Task-#200 #17

Merged
vaibhav.surve merged 4 commits from Vaibhav_Task-#200 into main 2025-05-09 06:04:01 +00:00
Showing only changes of commit 7281794fcf - Show all commits

View File

@ -186,8 +186,8 @@ class _EmployeeScreenState extends State<EmployeeScreen> 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<EmployeeScreen> 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();