Skip to content

Commit

Permalink
show data[index][id] instead of unkown
Browse files Browse the repository at this point in the history
  • Loading branch information
HarlJo committed Apr 24, 2024
1 parent 157c0cf commit db64f0e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/settings/_account.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ class _SettingsAccountFragment extends State<SettingsAccountFragment> {
return Card(
child: ListTile(
title: Text(L10n.of(context).account),
subtitle: Text(L10n.of(context).unknown),
subtitle: Text(
data[index]['id'].toString(),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
leading: Icon(Icons.account_circle),
trailing: IconButton(
icon: Icon(Icons.delete),
Expand Down

0 comments on commit db64f0e

Please sign in to comment.