SoftKeyboardWidget constructor

const SoftKeyboardWidget({
  1. required KeyboardInputController keyboardInputController,
  2. required double width,
  3. required double height,
  4. required List<List<VirtualKey>> keyLayout,
  5. double columnSpacing = 6,
  6. double rowSpacing = 6,
  7. Key? key,
})

Implementation

const SoftKeyboardWidget({
  required this.keyboardInputController,
  required this.width,
  required this.height,
  required this.keyLayout,
  this.columnSpacing = 6,
  this.rowSpacing = 6,
  super.key,
});