TF-460 Add presentation layer for implement get all identities

This commit is contained in:
dab246
2022-04-26 09:31:38 +07:00
committed by Dat H. Pham
parent 4764f9eb90
commit f432dfb376
35 changed files with 591 additions and 204 deletions
@@ -107,6 +107,7 @@ extension AppColor on Color {
static const colorAvatar = Color(0xFFDE5E5E);
static const colorFocusButton = Color(0x14818C99);
static const colorBorderEmailAddressInvalid = Color(0xFFFF3347);
static const colorBorderIdentityInfo = Color(0xFFE7E8EC);
static const colorBgMailboxSelected = Color(0xFF99E4E8EC);
static const colorLoading = Color(0x2999A2AD);
static const colorActionButtonHover = Color(0xFFA2AAB3);
@@ -95,6 +95,11 @@ class ImagePaths {
String get icLogout => _getImagePath('ic_logout.svg');
String get icSetting => _getImagePath('ic_setting.svg');
String get icProfiles => _getImagePath('ic_profiles.svg');
String get icAddIdentity => _getImagePath('ic_add_identity.svg');
String get icDropDown => _getImagePath('ic_dropdown.svg');
String get icMoreVertical => _getImagePath('ic_more_vertical.svg');
String get icEmail => _getImagePath('ic_email.svg');
String get icReplyTo => _getImagePath('ic_reply_to.svg');
String _getImagePath(String imageName) {
return AssetsPaths.images + imageName;