GoogleLoginButton constructor

const GoogleLoginButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. String text = 'Google로 로그인',
  4. double? width,
  5. double? height,
  6. double borderRadius = 6,
  7. ButtonSize size = ButtonSize.medium,
  8. bool isLoading = false,
  9. bool disabled = false,
})

Implementation

const GoogleLoginButton({
  super.key,
  this.onPressed,
  this.text = 'Google로 로그인',
  this.width,
  this.height,
  this.borderRadius = 6,
  this.size = ButtonSize.medium,
  this.isLoading = false,
  this.disabled = false,
});