mirror of
https://github.com/Iconica-Development/flutter_login_widget.git
synced 2025-05-19 21:53:45 +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({
|
const ForgotPasswordForm({
|
||||||
super.key,
|
super.key,
|
||||||
required this.options,
|
required this.options,
|
||||||
required this.title,
|
|
||||||
required this.description,
|
required this.description,
|
||||||
required this.onRequestForgotPassword,
|
required this.onRequestForgotPassword,
|
||||||
|
this.title,
|
||||||
this.initialEmail,
|
this.initialEmail,
|
||||||
});
|
});
|
||||||
|
|
||||||
final LoginOptions options;
|
final LoginOptions options;
|
||||||
|
|
||||||
final Widget title;
|
final Widget? title;
|
||||||
final Widget description;
|
final Widget description;
|
||||||
final String? initialEmail;
|
final String? initialEmail;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue