Change logos to beta and move position version on web (#3203)

This commit is contained in:
Dat Vu
2024-10-16 17:56:20 +07:00
committed by GitHub
parent 8ccbd8a69d
commit 401f0b97fb
9 changed files with 124 additions and 25 deletions
@@ -129,6 +129,23 @@ class ManageAccountMenuView extends GetWidget<ManageAccountMenuController> {
]
),
)),
Container(
color: AppColor.colorBgMailbox,
width: double.infinity,
alignment: controller.responsiveUtils.isDesktop(context)
? AlignmentDirectional.centerStart
: AlignmentDirectional.center,
padding: const EdgeInsets.all(16),
child: ApplicationVersionWidget(
padding: EdgeInsets.zero,
title: '${AppLocalizations.of(context).version.toLowerCase()} ',
textStyle: Theme.of(context).textTheme.bodySmall?.copyWith(
fontSize: 13,
color: AppColor.colorTextBody,
fontWeight: FontWeight.normal
),
),
),
]
)
),