Remove app version in Settings

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-07-03 10:47:22 +07:00
committed by Dat H. Pham
parent 141fa2cc2c
commit 718f1fe130
2 changed files with 124 additions and 169 deletions
@@ -124,11 +124,14 @@ class SettingsUtils {
}
}
static EdgeInsets getMarginSettingDetailsView(BuildContext context, ResponsiveUtils responsiveUtils) {
static EdgeInsetsGeometry? getMarginSettingDetailsView(
BuildContext context,
ResponsiveUtils responsiveUtils,
) {
if (responsiveUtils.isWebDesktop(context)) {
return const EdgeInsets.all(16);
return const EdgeInsetsDirectional.only(end: 16, top: 16, bottom: 16);
} else {
return EdgeInsets.zero;
return null;
}
}