From 8e778e8cc37dfdf0525b4dbf45c0b193e1dd7e15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20M=C3=BCller?= Date: Sat, 6 Jan 2024 22:10:10 +0100 Subject: [PATCH] Added hint which user is going to be signed out --- lib/view/settings/settings.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/view/settings/settings.dart b/lib/view/settings/settings.dart index f0e1710..d43cc90 100644 --- a/lib/view/settings/settings.dart +++ b/lib/view/settings/settings.dart @@ -45,8 +45,9 @@ class _SettingsState extends State { body: ListView( children: [ ListTile( - leading: const Icon(Icons.logout_outlined), + leading: const CenteredLeading(Icon(Icons.logout_outlined)), title: const Text("Konto abmelden"), + subtitle: Text("Angemeldet als ${AccountData().getUsername()}"), onTap: () { showDialog( context: context,