kopia lustrzana https://gitlab.com/mysocialportal/relatica
Add additional handle and last post time to contacts screen list
rodzic
870a7fc2a0
commit
cd7ca5776b
|
@ -64,7 +64,14 @@ class _ContactsScreenState extends State<ContactsScreen> {
|
|||
context.pushNamed(ScreenPaths.userProfile,
|
||||
params: {'id': contact.id});
|
||||
},
|
||||
title: Text(contact.name),
|
||||
title: Text(
|
||||
'${contact.name} (${contact.handle})',
|
||||
softWrap: true,
|
||||
),
|
||||
subtitle: Text(
|
||||
'Last Status: ${contact.lastStatus?.toIso8601String() ?? "Unknown"}',
|
||||
softWrap: true,
|
||||
),
|
||||
trailing: Text(contact.status.label()),
|
||||
);
|
||||
},
|
||||
|
|
Ładowanie…
Reference in New Issue