LoginScreen constructor

const LoginScreen({
  1. Key? key,
  2. WidgetBuilder? emailLoginBuilder,
  3. bool logInWithEmail = true,
  4. bool logInWithGoogle = true,
  5. bool logInWithApple = true,
  6. bool logInAnonymous = true,
  7. bool darkMode = false,
  8. Color? backgroundColor,
  9. Widget? backgroundWidget,
  10. Widget? expandedWidget,
  11. AuthStrings? authStrings,
})

Implementation

const LoginScreen(
    {Key? key,
    this.emailLoginBuilder,
    this.logInWithEmail = true,
    this.logInWithGoogle = true,
    this.logInWithApple = true,
    this.logInAnonymous = true,
    this.darkMode = false,
    this.backgroundColor,
    this.backgroundWidget,
    this.expandedWidget,
    this.authStrings})
    : super(key: key);