Merge pull request #11 from Iconica-Development/hotfix/title-optional

Make the title optional on the ForgotPasswordForm
This commit is contained in:
FlutterJoey 2022-12-02 15:40:08 +01:00 committed by GitHub
commit ba5eb122c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;