TF-3985 Change icons and style to be consistent with Twake drive storage

This commit is contained in:
dab246
2025-09-09 13:41:52 +07:00
committed by Dat H. Pham
parent 9671822f78
commit c3ee166c00
8 changed files with 60 additions and 12 deletions
@@ -40,14 +40,17 @@ class MailboxView extends BaseMailboxView {
Obx(() {
final isPremiumAvailable =
controller.mailboxDashBoardController.isPremiumAvailable;
final isDesktop = controller.responsiveUtils.isDesktop(context);
if (isPremiumAvailable) {
return IncreaseSpaceButtonWidget(
imagePaths: controller.imagePaths,
margin: const EdgeInsetsDirectional.only(
start: 26,
margin: EdgeInsetsDirectional.only(
start: isDesktop ? 26 : 24,
bottom: 8,
end: isDesktop ? 0 : 24,
),
isDesktop: isDesktop,
onTapAction: () {},
);
} else {