feat: Enhance admin user management with search, filtering, and sorting capabilities
Test Suite / test (24.15.0) (push) Has been cancelled
Test Suite / test (24.15.0) (push) Has been cancelled
This commit is contained in:
@@ -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),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user