TF-3181 Display contact support button on mobile app

(cherry picked from commit 01d2a9b71d937930be6ae247996a3ee1e21a5dc0)
This commit is contained in:
dab246
2024-12-06 01:45:38 +07:00
committed by Dat H. Pham
parent 129d5f5fa8
commit 2da1e555bb
7 changed files with 133 additions and 32 deletions
@@ -31,12 +31,6 @@ class QuotasView extends GetWidget<QuotasController> {
color: controller.responsiveUtils.isWebDesktop(context)
? QuotasViewStyles.webBackgroundColor
: QuotasViewStyles.mobileBackgroundColor,
border: const Border(
top: BorderSide(
color: QuotasViewStyles.topLineColor,
width: QuotasViewStyles.topLineSize,
)
),
),
alignment: AlignmentDirectional.centerStart,
child: Column(
@@ -59,6 +53,8 @@ class QuotasView extends GetWidget<QuotasController> {
fontWeight: QuotasViewStyles.labelFontWeight,
color: QuotasViewStyles.labelTextColor
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
)
],
),
@@ -80,6 +76,8 @@ class QuotasView extends GetWidget<QuotasController> {
fontWeight: QuotasViewStyles.progressStateFontWeight,
color: octetQuota.getQuotasStateTitleColor()
),
maxLines: 2,
overflow: TextOverflow.ellipsis,
)
],
),