PrimaryButton constructor
const
PrimaryButton({
- Key? key,
- required VoidCallback onPressed,
- required String text,
- ButtonMode mode = ButtonMode.confirm,
- double? width,
- double height = 45,
- ButtonConfig? style,
Implementation
const PrimaryButton({
super.key,
required this.onPressed,
required this.text,
this.mode = ButtonMode.confirm,
this.width,
this.height = 45,
this.style,
});