Skip to content

Commit db64f0e

Browse files
committed
show data[index][id] instead of unkown
1 parent 157c0cf commit db64f0e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/settings/_account.dart

+5-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,11 @@ class _SettingsAccountFragment extends State<SettingsAccountFragment> {
3636
return Card(
3737
child: ListTile(
3838
title: Text(L10n.of(context).account),
39-
subtitle: Text(L10n.of(context).unknown),
39+
subtitle: Text(
40+
data[index]['id'].toString(),
41+
maxLines: 1,
42+
overflow: TextOverflow.ellipsis,
43+
),
4044
leading: Icon(Icons.account_circle),
4145
trailing: IconButton(
4246
icon: Icon(Icons.delete),

0 commit comments

Comments
 (0)