mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-25 22:39:22 +00:00
Add calls notice
This commit is contained in:
parent
0103779608
commit
6961694fd2
@ -157,16 +157,19 @@ class _MembershipsPanelState extends SafeState<MembershipsPanel> {
|
||||
);
|
||||
}
|
||||
|
||||
/// TODO : all calls notices
|
||||
Widget _buildConversationMembership(Membership membership) {
|
||||
final conversation = membership.conversation;
|
||||
return Container(
|
||||
color: membership.conversation.sawLastMessage ? null : Color(0xFF1c443a),
|
||||
color: conversation.isHavingCall
|
||||
? Color(0xFF815d1d)
|
||||
: (conversation.sawLastMessage ? null : Color(0xFF1c443a)),
|
||||
child: ListTile(
|
||||
dense: true,
|
||||
leading: Icon(Icons.message),
|
||||
title: Text(ConversationsHelper.getConversationName(
|
||||
membership.conversation, _usersList)),
|
||||
subtitle: Text(diffTimeFromNowToStr(membership.lastActive)),
|
||||
leading: Icon(conversation.isHavingCall ? Icons.phone : Icons.message),
|
||||
title: Text(
|
||||
ConversationsHelper.getConversationName(conversation, _usersList)),
|
||||
subtitle: Text(diffTimeFromNowToStr(membership.lastActive) +
|
||||
(conversation.isHavingCall ? "\n" + tr("Ongoing call") : "")),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user