EmailVerificationScreen constructor

const EmailVerificationScreen({
  1. Key? key,
  2. FirebaseAuth? auth,
  3. List<FirebaseUIAction> actions = const [],
  4. HeaderBuilder? headerBuilder,
  5. double? headerMaxExtent,
  6. SideBuilder? sideBuilder,
  7. TextDirection? desktopLayoutDirection,
  8. double breakpoint = 500,
  9. ActionCodeSettings? actionCodeSettings,
  10. double? maxWidth = 1200,
})

A screen that contains hints of how to verify the email. A verification email is being sent automatically when this screen is opened.

Implementation

const EmailVerificationScreen({
  super.key,
  this.auth,
  this.actions = const [],
  this.headerBuilder,
  this.headerMaxExtent,
  this.sideBuilder,
  this.desktopLayoutDirection,
  this.breakpoint = 500,
  this.actionCodeSettings,
  this.maxWidth = 1200,
});