SoftKeyboardWidget constructor

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

Implementation

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