KeyboardUIConfig constructor
const
KeyboardUIConfig({
- double digitBorderWidth = 1,
- EdgeInsetsGeometry keyboardRowMargin = const EdgeInsets.only(top: 15, left: 4, right: 4),
- EdgeInsetsGeometry digitInnerMargin = const EdgeInsets.all(24),
- Color primaryColor = Colors.white,
- Color digitFillColor = Colors.transparent,
- TextStyle digitTextStyle = const TextStyle(fontSize: 30, color: Colors.white),
- TextStyle deleteButtonTextStyle = const TextStyle(fontSize: 16, color: Colors.white),
- 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,
});