BuiltInKeyboard constructor

BuiltInKeyboard({
  1. @required TextEditingController? controller,
  2. Language language = Language.EN,
  3. Layout layout = Layout.QWERTY,
  4. double? height,
  5. double? width,
  6. double spacing = 8.0,
  7. BorderRadius? borderRadius,
  8. Color color = Colors.deepOrange,
  9. TextStyle letterStyle = const TextStyle(fontSize: 25, color: Colors.black),
  10. bool enableSpaceBar = false,
  11. bool enableBackSpace = true,
  12. bool enableCapsLock = false,
  13. bool enableAllUppercase = false,
  14. bool enableLongPressUppercase = false,
  15. Color? highlightColor,
  16. Color? splashColor,
})

Implementation

BuiltInKeyboard({
  @required this.controller,
  this.language = Language.EN,
  this.layout = Layout.QWERTY,
  this.height,
  this.width,
  this.spacing = 8.0,
  this.borderRadius,
  this.color = Colors.deepOrange,
  this.letterStyle = const TextStyle(fontSize: 25, color: Colors.black),
  this.enableSpaceBar = false,
  this.enableBackSpace = true,
  this.enableCapsLock = false,
  this.enableAllUppercase = false,
  this.enableLongPressUppercase = false,
  this.highlightColor,
  this.splashColor,
});