Skip to content

Add autofocus option to SupaEmailAuth #139

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion lib/src/components/supa_email_auth.dart
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ typedef MetadataController = Object;
/// ```
/// {@endtemplate}
class SupaEmailAuth extends StatefulWidget {
/// Whether the email field should automatically focus when the form is shown
final bool autofocus;

/// The URL to redirect the user to when clicking on the link on the
/// confirmation link after signing up.
final String? redirectTo;
Expand Down Expand Up @@ -220,6 +223,7 @@ class SupaEmailAuth extends StatefulWidget {
/// {@macro supa_email_auth}
const SupaEmailAuth({
super.key,
this.autofocus = true,
this.redirectTo,
this.resetPasswordRedirectTo,
this.passwordValidator,
Expand Down Expand Up @@ -298,7 +302,7 @@ class _SupaEmailAuthState extends State<SupaEmailAuth> {
keyboardType: TextInputType.emailAddress,
autofillHints: const [AutofillHints.email],
autovalidateMode: AutovalidateMode.onUserInteraction,
autofocus: true,
autofocus: widget.autofocus,
focusNode: _emailFocusNode,
textInputAction: _isRecoveringPassword
? TextInputAction.done
Expand Down