@@ -57,6 +57,12 @@ class SupaEmailAuth extends StatefulWidget {
57
57
/// confirmation link after signing up.
58
58
final String ? redirectTo;
59
59
60
+ /// The URL to redirect the user to when clicking on the link on the
61
+ /// password recovery link.
62
+ ///
63
+ /// If unspecified, the [redirectTo] value will be used.
64
+ final String ? resetPasswordRedirectTo;
65
+
60
66
/// Callback for the user to complete a sign in.
61
67
final void Function (AuthResponse response) onSignInComplete;
62
68
@@ -93,6 +99,7 @@ class SupaEmailAuth extends StatefulWidget {
93
99
const SupaEmailAuth ({
94
100
super .key,
95
101
this .redirectTo,
102
+ this .resetPasswordRedirectTo,
96
103
required this .onSignInComplete,
97
104
required this .onSignUpComplete,
98
105
this .onPasswordResetEmailSent,
@@ -308,7 +315,8 @@ class _SupaEmailAuthState extends State<SupaEmailAuth> {
308
315
final email = _emailController.text.trim ();
309
316
await supabase.auth.resetPasswordForEmail (
310
317
email,
311
- redirectTo: widget.redirectTo,
318
+ redirectTo:
319
+ widget.resetPasswordRedirectTo ?? widget.redirectTo,
312
320
);
313
321
widget.onPasswordResetEmailSent? .call ();
314
322
// FIX use_build_context_synchronously
0 commit comments