We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6be8dfa commit ceb3612Copy full SHA for ceb3612
lib/authentication/view/email_code_verification_page.dart
@@ -166,7 +166,10 @@ class _EmailCodeVerificationFormState
166
const SizedBox(height: AppSpacing.xxl), // Increased spacing
167
ElevatedButton(
168
style: ElevatedButton.styleFrom(
169
- padding: const EdgeInsets.symmetric(vertical: AppSpacing.md),
+ padding: const EdgeInsets.symmetric(
170
+ vertical: AppSpacing.md,
171
+ horizontal: AppSpacing.lg, // Added horizontal padding
172
+ ),
173
textStyle: textTheme.labelLarge,
174
),
175
onPressed: widget.isLoading ? null : _submitForm,
0 commit comments