AppButton constructor
const
AppButton({
- Key? key,
- required String label,
- VoidCallback? onPressed,
- AppButtonStyle style = AppButtonStyle.elevated,
- Widget? leadingIcon,
- Widget? trailingIcon,
- bool enabled = true,
Implementation
const AppButton({
super.key,
required this.label,
this.onPressed,
this.style = AppButtonStyle.elevated,
this.leadingIcon,
this.trailingIcon,
this.enabled = true,
});