We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 157c0cf commit db64f0eCopy full SHA for db64f0e
lib/settings/_account.dart
@@ -36,7 +36,11 @@ class _SettingsAccountFragment extends State<SettingsAccountFragment> {
36
return Card(
37
child: ListTile(
38
title: Text(L10n.of(context).account),
39
- subtitle: Text(L10n.of(context).unknown),
+ subtitle: Text(
40
+ data[index]['id'].toString(),
41
+ maxLines: 1,
42
+ overflow: TextOverflow.ellipsis,
43
+ ),
44
leading: Icon(Icons.account_circle),
45
trailing: IconButton(
46
icon: Icon(Icons.delete),
0 commit comments