SocialSignInButton constructor

const SocialSignInButton({
  1. SocialProvider? provider,
  2. String? label,
  3. Component? icon,
  4. void onPressed()?,
  5. ButtonSize size = ButtonSize.medium,
  6. bool disabled = false,
  7. bool loading = false,
  8. bool fullWidth = false,
  9. String? backgroundColor,
  10. String? foregroundColor,
  11. String? borderColor,
  12. String? hoverBackgroundColor,
  13. Key? key,
})

Implementation

const SocialSignInButton({
  this.provider,
  this.label,
  this.icon,
  this.onPressed,
  this.size = ButtonSize.medium,
  this.disabled = false,
  this.loading = false,
  this.fullWidth = false,
  this.backgroundColor,
  this.foregroundColor,
  this.borderColor,
  this.hoverBackgroundColor,
  super.key,
});