feat: Enhance admin user management with search, filtering, and sorting capabilities
Test Suite / test (24.15.0) (push) Has been cancelled

This commit is contained in:
Nils-Johan Gynther
2026-05-11 09:22:19 +02:00
parent 84ccabe2fe
commit 8e6e0e96b8
3 changed files with 278 additions and 22 deletions
@@ -34,13 +34,22 @@ class _AdminScreenState extends ConsumerState<AdminScreen> {
style: theme.textTheme.bodyMedium,
),
const SizedBox(height: 8),
const Wrap(
Wrap(
spacing: 8,
runSpacing: 8,
children: [
Chip(label: Text('Konton')),
Chip(label: Text('Databas')),
Chip(label: Text('Privat + globalt')),
ActionChip(
label: const Text('Konton'),
onPressed: () => DefaultTabController.of(context).animateTo(0),
),
ActionChip(
label: const Text('Databas'),
onPressed: () => DefaultTabController.of(context).animateTo(1),
),
ActionChip(
label: const Text('Privat + globalt'),
onPressed: () => DefaultTabController.of(context).animateTo(1),
),
],
),
],