OwnKeyBoard constructor

OwnKeyBoard({
  1. Key? key,
  2. required TextEditingController controller,
  3. Color? backgroundColor = Colors.white10,
  4. EdgeInsets? padding = const EdgeInsets.all(5),
  5. Color? iconBackspaceColor = Colors.red,
  6. Color? iconDoneColor = Colors.green,
  7. Color? splashColor = Colors.black26,
  8. VoidCallback? doneClicked,
  9. VoidCallback? clearClicked,
  10. double iconSize = 25,
  11. TextStyle textStyle = const TextStyle(),
})

Implementation

OwnKeyBoard(
    {Key? key,
    required this.controller,
    this.backgroundColor = Colors.white10,
    this.padding = const EdgeInsets.all(5),
    this.iconBackspaceColor = Colors.red,
    this.iconDoneColor = Colors.green,
    this.splashColor = Colors.black26,
    this.doneClicked,
    this.clearClicked,
    this.iconSize = 25,
    this.textStyle = const TextStyle()})
    : super(key: key);