TF-1857 Display calendar event icon in item list email

(cherry picked from commit 6c938a7971fc7ac443ff2a800a292bdc75912d31)
This commit is contained in:
dab246
2023-07-19 17:00:53 +07:00
committed by Dat Vu
parent 1fa7f49bb3
commit c37ab20901
6 changed files with 40 additions and 0 deletions
@@ -184,6 +184,8 @@ extension AppColor on Color {
static const colorBackgroundDeliveringState = Color(0xFFF2F3F5);
static const colorNetworkConnectionBannerBackground = Color(0x99EBEDF0);
static const colorNetworkConnectionLabel = Color(0xFF818C99);
static const colorCalendarEventRead = Color(0xFF818C99);
static const colorCalendarEventUnread = Color(0xFF1C1B1F);
static const mapGradientColor = [
[Color(0xFF21D4FD), Color(0xFFB721FF)],
@@ -194,6 +194,7 @@ class ImagePaths {
String get icArrowLeft => _getImagePath('ic_arrow_left.svg');
String get icArrowRight => _getImagePath('ic_arrow_right.svg');
String get icAddPicture => _getImagePath('ic_add_picture.svg');
String get icCalendarEvent => _getImagePath('ic_calendar_event.svg');
String _getImagePath(String imageName) {
return AssetsPaths.images + imageName;