feat: simplify AdminScreen and refactor ImportScreen to use TabBarView directly

This commit is contained in:
Nils-Johan Gynther
2026-04-25 08:31:42 +02:00
parent 8ea2b97c27
commit e2b7b884aa
3 changed files with 60 additions and 57 deletions
@@ -12,12 +12,7 @@ class AdminScreen extends ConsumerStatefulWidget {
class _AdminScreenState extends ConsumerState<AdminScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Admin Användare'),
),
body: const AdminUsersPanel(),
);
return const AdminUsersPanel();
}
}