Skip to content

Commit 1ad321d

Browse files
committed
feat: added edit and delete icons to user card for later development
1 parent f402438 commit 1ad321d

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

client/lib/views/users_page.dart

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,31 @@ class _UsersPageState extends State<UsersPage> {
6868
fontWeight: FontWeight.bold,
6969
),
7070
),
71+
Row(
72+
children: [
73+
InkWell(
74+
child: const Icon(
75+
Icons.edit,
76+
color: Colors.greenAccent,
77+
),
78+
onTap: () async {
79+
debugPrint('edit');
80+
},
81+
),
82+
Padding(
83+
padding: const EdgeInsets.all(8),
84+
child: InkWell(
85+
child: const Icon(
86+
Icons.delete_forever,
87+
color: Colors.redAccent,
88+
),
89+
onTap: () async {
90+
debugPrint('delete');
91+
},
92+
),
93+
),
94+
],
95+
)
7196
],
7297
),
7398
Row(

0 commit comments

Comments
 (0)