TF-1118 Apply new latest design forwarding

This commit is contained in:
dab246
2022-11-08 15:45:49 +07:00
committed by Dat H. Pham
parent 2402371ca3
commit eaa47b9cd7
31 changed files with 897 additions and 714 deletions
@@ -80,9 +80,9 @@ class SettingsUtils {
static EdgeInsets getPaddingListRecipientForwarding(BuildContext context, ResponsiveUtils responsiveUtils) {
if (responsiveUtils.isPortraitMobile(context)) {
return const EdgeInsets.all(12);
return const EdgeInsets.only(left: 12, right: 12, bottom: 12);
} else {
return const EdgeInsets.symmetric(horizontal: 24, vertical: 12);
return const EdgeInsets.only(left: 24, right: 24, bottom: 24);
}
}