OnScreenKeyPad constructor
const
OnScreenKeyPad({
- Key? key,
- bool enableHapticFeedback = false,
- HapticFeedbackType? hapticFeedbackType,
- EdgeInsets? keyPadding,
- BoxShape keyShape = BoxShape.rectangle,
- Color? keyCellSplashColor,
- Color? keyCellHighlightColor,
- Color? keyCellBackgroundColor,
- required void onKeyPress(),
- Widget? leftButtonAction,
- Widget? rightButtonAction,
- TextStyle? style,
Constructs an OnScreenKeyPad widget.
Implementation
const OnScreenKeyPad({
super.key,
this.enableHapticFeedback = false,
this.hapticFeedbackType,
this.keyPadding,
this.keyShape = BoxShape.rectangle,
this.keyCellSplashColor,
this.keyCellHighlightColor,
this.keyCellBackgroundColor,
required this.onKeyPress,
this.leftButtonAction,
this.rightButtonAction,
this.style,
});