Set padding for email address tag in input field

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-07-11 10:43:32 +07:00
committed by Dat H. Pham
parent 58a8d93ed3
commit 3457601d14
8 changed files with 166 additions and 105 deletions
@@ -161,6 +161,7 @@ class EmailRecoveryFormMobileBuilder extends StatelessWidget {
padding: const EdgeInsets.symmetric(horizontal: 17),
onChanged: controller.onChangeHasAttachment,
)),
const SizedBox(height: 32.0),
],
),
),
@@ -170,9 +171,11 @@ class EmailRecoveryFormMobileBuilder extends StatelessWidget {
onRestore: () => controller.onRestore(context),
nextFocusNode: controller.focusManager.subjectFieldFocusNode,
isMobile: true,
padding: const EdgeInsetsDirectional.symmetric(
horizontal: 16,
vertical: 44,
padding: const EdgeInsetsDirectional.only(
start: 16,
end: 16,
top: 12,
bottom: 44,
),
)
],