NumPad constructor
const
NumPad({
- required OnNumberButtonPressed onNumberTap,
- VoidCallback? onDeleteTap,
- VoidCallback? onDoneTap,
- double? buttonElevation,
- Color? buttonBackgroundColor,
- Color? buttonForegroundColor,
- Size? buttonSize,
- double? buttonRadius,
- double? numPadVerticalSpacing,
- double? numPadHorizontalSpacing,
- Widget? deleteWidget,
- Widget? doneWidget,
- bool enableDone = false,
- Key? key,
Implementation
const NumPad({
required this.onNumberTap,
this.onDeleteTap,
this.onDoneTap,
this.buttonElevation,
this.buttonBackgroundColor,
this.buttonForegroundColor,
this.buttonSize,
this.buttonRadius,
this.numPadVerticalSpacing,
this.numPadHorizontalSpacing,
this.deleteWidget,
this.doneWidget,
this.enableDone = false,
super.key,
});