KeyboardUIConfig constructor

const KeyboardUIConfig({
  1. double digitBorderWidth = 1,
  2. EdgeInsetsGeometry keyboardRowMargin = const EdgeInsets.only(top: 15, left: 4, right: 4),
  3. EdgeInsetsGeometry digitInnerMargin = const EdgeInsets.all(24),
  4. Color primaryColor = Colors.white,
  5. Color digitFillColor = Colors.transparent,
  6. TextStyle digitTextStyle = const TextStyle(fontSize: 30, color: Colors.white),
  7. TextStyle deleteButtonTextStyle = const TextStyle(fontSize: 16, color: Colors.white),
  8. Size? keyboardSize,
})

Implementation

const KeyboardUIConfig({
  this.digitBorderWidth = 1,
  this.keyboardRowMargin = const EdgeInsets.only(top: 15, left: 4, right: 4),
  this.digitInnerMargin = const EdgeInsets.all(24),
  this.primaryColor = Colors.white,
  this.digitFillColor = Colors.transparent,
  this.digitTextStyle = const TextStyle(fontSize: 30, color: Colors.white),
  this.deleteButtonTextStyle =
      const TextStyle(fontSize: 16, color: Colors.white),
  this.keyboardSize,
});