feat: update README and technical documentation with onboarding improvements, user experience enhancements, and architectural details

This commit is contained in:
Nils-Johan Gynther
2026-04-25 16:26:34 +02:00
parent 5103cac112
commit 63d225d7f7
3 changed files with 129 additions and 65 deletions
-10
View File
@@ -178,8 +178,6 @@ class AppShell extends ConsumerWidget {
if (location != '/profile' && context.mounted) {
context.go('/profile');
}
case 'logout':
logout();
}
},
itemBuilder: (context) => const [
@@ -191,14 +189,6 @@ class AppShell extends ConsumerWidget {
contentPadding: EdgeInsets.zero,
),
),
PopupMenuItem<String>(
value: 'logout',
child: ListTile(
leading: Icon(Icons.logout),
title: Text('Logga ut'),
contentPadding: EdgeInsets.zero,
),
),
],
),
],