Pinpad constructor
const
Pinpad({
- required dynamic onKeyTap(
- String key
- BoxDecoration? keyDefaultDecoration,
- BoxDecoration? keyPressedDecoration,
- BoxDecoration? keyDisabledDecoration,
- double? horizontalSpacing,
- double? verticalSpacing,
- bool enabled = true,
- PinpadExtraKey? rightExtraKey,
- PinpadExtraKey? leftExtraKey,
- TextStyle? keyDefaultTextStyle,
- TextStyle? keyPressedTextStyle,
- TextStyle? keyDisabledTextStyle,
- double? keyHeight,
- double? keyWidth,
- bool vibrationEnabled = false,
- bool isVisible = true,
- Key? key,
Pinpad widget. Pinpad is a special keyboard for entering pin code.
Implementation
const Pinpad({
required this.onKeyTap,
this.keyDefaultDecoration,
this.keyPressedDecoration,
this.keyDisabledDecoration,
this.horizontalSpacing,
this.verticalSpacing,
this.enabled = true,
this.rightExtraKey,
this.leftExtraKey,
this.keyDefaultTextStyle,
this.keyPressedTextStyle,
this.keyDisabledTextStyle,
this.keyHeight,
this.keyWidth,
this.vibrationEnabled = false,
this.isVisible = true,
super.key,
});