NumericKeyboard constructor
const
NumericKeyboard({
- Key? key,
- required KeyboardTapCallback onKeyboardTap,
- TextStyle textStyle = const TextStyle(color: Colors.black),
- dynamic rightButtonFn()?,
- Widget? rightIcon,
- dynamic leftButtonFn()?,
- Widget? leftIcon,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.spaceBetween,
Implementation
const NumericKeyboard(
{Key? key,
required this.onKeyboardTap,
this.textStyle = const TextStyle(color: Colors.black),
this.rightButtonFn,
this.rightIcon,
this.leftButtonFn,
this.leftIcon,
this.mainAxisAlignment = MainAxisAlignment.spaceBetween})
: super(key: key);