LoginScreen constructor

const LoginScreen({
  1. Key? key,
  2. ImageProvider<Object>? decorationImage,
  3. Widget? title,
  4. required Authenticated onAuthenticated,
  5. double marginTopRatio = 0.15,
  6. ButtonsAlignment? alignment = ButtonsAlignment.HORIZONTAL,
  7. bool facebook = false,
  8. bool google = false,
  9. bool password = false,
  10. bool apple = false,
  11. bool phone = true,
})

Implementation

const LoginScreen(
    {Key? key,
    this.decorationImage,
    this.title,
    required this.onAuthenticated,
    this.marginTopRatio = 0.15,
    this.alignment = ButtonsAlignment.HORIZONTAL,
    this.facebook = false,
    this.google = false,
    this.password = false,
    this.apple = false,
    this.phone = true})
    : super(key: key);