Added hint which user is going to be signed out

This commit is contained in:
Elias Müller 2024-01-06 22:10:10 +01:00
parent d033042e0b
commit 8e778e8cc3

View File

@ -45,8 +45,9 @@ class _SettingsState extends State<Settings> {
body: ListView( body: ListView(
children: [ children: [
ListTile( ListTile(
leading: const Icon(Icons.logout_outlined), leading: const CenteredLeading(Icon(Icons.logout_outlined)),
title: const Text("Konto abmelden"), title: const Text("Konto abmelden"),
subtitle: Text("Angemeldet als ${AccountData().getUsername()}"),
onTap: () { onTap: () {
showDialog( showDialog(
context: context, context: context,