TF-1857 Display calendar event icon in item list email
(cherry picked from commit 6c938a7971fc7ac443ff2a800a292bdc75912d31)
This commit is contained in:
@@ -330,4 +330,16 @@ mixin BaseEmailItemTile {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Widget buildCalendarEventIcon({required PresentationEmail presentationEmail}) {
|
||||
return SvgPicture.asset(
|
||||
imagePaths.icCalendarEvent,
|
||||
width: 20,
|
||||
height: 20,
|
||||
fit: BoxFit.fill,
|
||||
colorFilter: presentationEmail.hasRead
|
||||
? AppColor.colorCalendarEventRead.asFilter()
|
||||
: AppColor.colorCalendarEventUnread.asFilter(),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user