forget password changes

This commit is contained in:
mohammad
2024-08-15 13:04:18 +03:00
parent cd372402f7
commit 75d5c7a4ac

View File

@ -117,7 +117,9 @@ class ForgetPasswordWebPage extends StatelessWidget {
const SizedBox(height: 10), const SizedBox(height: 10),
Text( Text(
'Please fill in your account information to\nretrieve your password', 'Please fill in your account information to\nretrieve your password',
style: Theme.of(context).textTheme.bodySmall!.copyWith(fontSize: 14,fontWeight: FontWeight.w400), style: Theme.of(context).textTheme.bodySmall!.copyWith(
fontSize: 14,
fontWeight: FontWeight.w400),
), ),
const SizedBox(height: 10), const SizedBox(height: 10),
Column( Column(
@ -126,7 +128,9 @@ class ForgetPasswordWebPage extends StatelessWidget {
children: [ children: [
Text( Text(
"Country/Region", "Country/Region",
style: Theme.of(context).textTheme.bodySmall!.copyWith(fontSize: 14,fontWeight: FontWeight.w400), style: Theme.of(context).textTheme.bodySmall!.copyWith(
fontSize: 14,
fontWeight: FontWeight.w400),
), ),
const SizedBox(height: 10), const SizedBox(height: 10),
@ -310,6 +314,7 @@ class ForgetPasswordWebPage extends StatelessWidget {
)), )),
InkWell( InkWell(
onTap: () { onTap: () {
forgetBloc.add(StopTimerEvent());
Navigator.pop(context); Navigator.pop(context);
}, },
child: const Flexible( child: const Flexible(