EmailSignInButton constructor

EmailSignInButton({
  1. double? height,
  2. double? width,
  3. VoidCallback? onPressed,
  4. String text = 'Sign in with Email',
  5. bool darkMode = false,
  6. bool centerText = false,
  7. TextStyle? textStyle,
  8. ButtonStyle? buttonStyle,
  9. Key? key,
  10. Color lightTextColor = Colors.black,
  11. Color lightButtonColor = Colors.white,
  12. Color darkTextColor = Colors.white,
  13. Color darkButtonColor = Colors.green,
})

Implementation

EmailSignInButton(
    {this.height,
    this.width,
    this.onPressed,
    this.text = 'Sign in with Email',
    this.darkMode = false,
    this.centerText = false,
    this.textStyle,
    this.buttonStyle,
    Key? key,
    this.lightTextColor = Colors.black,
    this.lightButtonColor = Colors.white,
    this.darkTextColor = Colors.white,
    this.darkButtonColor = Colors.green})
    : super(key: key);