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('Name', color: contentTheme.primary)),
DataColumn( DataColumn(
label: MyText.labelLarge('Contact', color: contentTheme.primary)), label: MyText.labelLarge('Contact', color: contentTheme.primary)),
DataColumn( // DataColumn(
label: MyText.labelLarge('Actions', color: contentTheme.primary)), // label: MyText.labelLarge('Actions', color: contentTheme.primary)),
]; ];
final rows = final rows =
@ -217,26 +217,26 @@ class _EmployeeScreenState extends State<EmployeeScreen> with UIMixin {
], ],
), ),
), ),
DataCell( // DataCell(
Row( // Row(
children: [ // children: [
IconButton( // IconButton(
icon: const Icon(Icons.visibility), // icon: const Icon(Icons.visibility),
tooltip: 'View', // tooltip: 'View',
onPressed: () { // onPressed: () {
// View employee action // // View employee action
}, // },
), // ),
IconButton( // IconButton(
icon: const Icon(Icons.edit), // icon: const Icon(Icons.edit),
tooltip: 'Edit', // tooltip: 'Edit',
onPressed: () { // onPressed: () {
// Edit employee action // // Edit employee action
}, // },
), // ),
], // ],
), // ),
), // ),
], ],
); );
}).toList(); }).toList();