We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f402438 commit 1ad321dCopy full SHA for 1ad321d
client/lib/views/users_page.dart
@@ -68,6 +68,31 @@ class _UsersPageState extends State<UsersPage> {
68
fontWeight: FontWeight.bold,
69
),
70
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
86
+ Icons.delete_forever,
87
+ color: Colors.redAccent,
88
89
90
+ debugPrint('delete');
91
92
93
94
+ ],
95
+ )
96
],
97
98
Row(
0 commit comments