AppleLoginButton constructor

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

Implementation

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