mirror of
https://github.com/Iconica-Development/flutter_login_widget.git
synced 2025-05-19 13:43:44 +02:00
Merge pull request #11 from Iconica-Development/hotfix/title-optional
Make the title optional on the ForgotPasswordForm
This commit is contained in:
commit
ba5eb122c3
1 changed files with 2 additions and 2 deletions
|
@ -7,15 +7,15 @@ class ForgotPasswordForm extends StatefulWidget {
|
|||
const ForgotPasswordForm({
|
||||
super.key,
|
||||
required this.options,
|
||||
required this.title,
|
||||
required this.description,
|
||||
required this.onRequestForgotPassword,
|
||||
this.title,
|
||||
this.initialEmail,
|
||||
});
|
||||
|
||||
final LoginOptions options;
|
||||
|
||||
final Widget title;
|
||||
final Widget? title;
|
||||
final Widget description;
|
||||
final String? initialEmail;
|
||||
|
||||
|
|
Loading…
Reference in a new issue