CrimsonAuthButton constructor

const CrimsonAuthButton({
  1. Key? key,
  2. required String label,
  3. required VoidCallback onPressed,
  4. bool isLoading = false,
  5. double height = 56.0,
  6. Widget? icon,
  7. double letterSpacing = 3.5,
  8. double fontSize = 13.0,
})

Implementation

const CrimsonAuthButton({
  super.key,
  required this.label,
  required this.onPressed,
  this.isLoading = false,
  this.height = 56.0,
  this.icon,
  this.letterSpacing = 3.5,
  this.fontSize = 13.0,
});