OnScreenKeyPad constructor

const OnScreenKeyPad({
  1. Key? key,
  2. bool enableHapticFeedback = false,
  3. HapticFeedbackType? hapticFeedbackType,
  4. EdgeInsets? keyPadding,
  5. BoxShape keyShape = BoxShape.rectangle,
  6. Color? keyCellSplashColor,
  7. Color? keyCellHighlightColor,
  8. Color? keyCellBackgroundColor,
  9. required void onKeyPress(
    1. String
    ),
  10. Widget? leftButtonAction,
  11. Widget? rightButtonAction,
  12. TextStyle? style,
})

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,
});