TF-1014: [Dev] Show quota at the bottom of mailbox

This commit is contained in:
ManhNTX
2022-11-09 16:49:01 +07:00
committed by Dat H. Pham
parent 21f027246b
commit 75495e7d1f
28 changed files with 508 additions and 6 deletions
@@ -163,6 +163,9 @@ extension AppColor on Color {
static const colorBackgroundContactTagItem = Color(0xFFDCE0E5);
static const colorDeleteContactIcon = Color(0xFFAEB7C2);
static const colorItemRecipientSelected = Color(0xFFDFEEFF);
static const colorBackgroundQuotasWarning = Color(0xFFFFC107);
static const colorTitleQuotasWarning = Color(0xFFF05C44);
static const colorProgressQuotasWarning = Color(0xFFFFA000);
static const mapGradientColor = [
[Color(0xFF21D4FD), Color(0xFFB721FF)],
@@ -172,6 +172,8 @@ class ImagePaths {
String get icCancelSelection => _getImagePath('ic_cancel_selection.svg');
String get icSelectedRecipient => _getImagePath('ic_selected_recipient.svg');
String get icDeleteRecipient => _getImagePath('ic_delete_recipient.svg');
String get icQuotas => _getImagePath('ic_quotas.svg');
String get icQuotasWarning => _getImagePath('ic_quotas_warning.svg');
String _getImagePath(String imageName) {
return AssetsPaths.images + imageName;