Skip to content

Commit

Permalink
Verify email alignment corrected
Browse files Browse the repository at this point in the history
# **Pull Request** 🚀
Fixes #54 
## Description
This pull request addresses and resolves Issue
#54 related to the email
verification alignment. The goal is to enhance the visual consistency
and user experience in the email verification module.

## Changes Made 🛠️
Aligned elements in the email verification module for a cleaner and more
polished appearance.

## Screenshot

![65f74525-f4c0-4ccb-a769-0928251bd0f2](https://github.com/Abhigyan103/Clickboard/assets/106444983/6cb6d877-7458-4c95-bed7-7fe41af83d06)
  • Loading branch information
Abhigyan103 authored Jan 22, 2024
2 parents 1af2ed3 + 600b695 commit cfe611a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/core/common_widgets/large_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class MainButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SizedBox(
width: 150,
width: 152,
height: 50,
child: FilledButton(onPressed: onPressed, child: child));
}
Expand Down
3 changes: 2 additions & 1 deletion lib/src/features/main_page/screens/verify_email.dart
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ class _VerifyEmailScreenState extends ConsumerState<VerifyEmailScreen> {
.toString()),
],
)
: const Text('Send Verification mail'))
: const Text('Send Verification mail',style: TextStyle(fontSize: 10.37),
textAlign: TextAlign.center,))
: const CircularProgressIndicator(
color: Colors.black,
strokeWidth: 2,
Expand Down

0 comments on commit cfe611a

Please sign in to comment.