SignInScreen constructor

const SignInScreen({
  1. Key? key,
  2. List<AuthProvider<AuthListener, AuthCredential>>? providers,
  3. FirebaseAuth? auth,
  4. double? headerMaxExtent,
  5. HeaderBuilder? headerBuilder,
  6. SideBuilder? sideBuilder,
  7. OAuthButtonVariant? oauthButtonVariant = OAuthButtonVariant.icon_and_text,
  8. TextDirection? desktopLayoutDirection,
  9. bool? resizeToAvoidBottomInset = true,
  10. bool? showAuthActionSwitch,
  11. String? email,
  12. AuthViewContentBuilder? subtitleBuilder,
  13. AuthViewContentBuilder? footerBuilder,
  14. Key? loginViewKey,
  15. List<FirebaseUIAction> actions = const [],
  16. double breakpoint = 800,
  17. Set<FirebaseUIStyle>? styles,
  18. bool showPasswordVisibilityToggle = false,
  19. double? maxWidth,
})

A screen displaying a fully styled Sign In flow for Authentication.

Implementation

const SignInScreen({
  super.key,
  super.providers,
  super.auth,
  this.headerMaxExtent,
  this.headerBuilder,
  this.sideBuilder,
  this.oauthButtonVariant = OAuthButtonVariant.icon_and_text,
  this.desktopLayoutDirection,
  this.resizeToAvoidBottomInset = true,
  this.showAuthActionSwitch,
  this.email,
  this.subtitleBuilder,
  this.footerBuilder,
  this.loginViewKey,
  this.actions = const [],
  this.breakpoint = 800,
  this.styles,
  this.showPasswordVisibilityToggle = false,
  this.maxWidth,
});