From 9ab5fa8f9559080c376fb24c8ba670cfa5360e18 Mon Sep 17 00:00:00 2001 From: jayesh Date: Wed, 19 Jun 2024 11:11:18 +0530 Subject: [PATCH] ui fixing --- .../presentation/widgets/restore_password_form.dart | 2 +- lib/features/login/presentation/widgets/bottom_section.dart | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/features/forgotPassword/presentation/widgets/restore_password_form.dart b/lib/features/forgotPassword/presentation/widgets/restore_password_form.dart index d6be1e7..788a8fc 100644 --- a/lib/features/forgotPassword/presentation/widgets/restore_password_form.dart +++ b/lib/features/forgotPassword/presentation/widgets/restore_password_form.dart @@ -33,7 +33,7 @@ class RestorePasswordForm extends StatelessWidget { create: (_) => PasswordVisibilityBloc(), child: FormLabelTextField( hintText: AppText.enterPassword, - title: AppText.password, + title: "New Password", type: AppText.password.toLowerCase(), textEditingController: restorePasswordBloc.passwordTextField, ), diff --git a/lib/features/login/presentation/widgets/bottom_section.dart b/lib/features/login/presentation/widgets/bottom_section.dart index 303c18f..8c2f410 100644 --- a/lib/features/login/presentation/widgets/bottom_section.dart +++ b/lib/features/login/presentation/widgets/bottom_section.dart @@ -123,6 +123,7 @@ class BottomSection extends StatelessWidget { ? AppText.backText : AppText.signUpText, ), + const Gap(15), ], ); }