FixedDigitInput constructor
const
FixedDigitInput({
- Key? key,
- required double size,
- required int numberDigits,
- FocusNode? focusNode,
- void onSubmitted(
- int? value
- void onChange(
- int? value
- void toForward(
- int? value
- void toBack(
- int? value
- String hintText = "",
- TextAlign textAlign = TextAlign.center,
- Color? hintColor,
- Color? textColor,
Implementation
const FixedDigitInput({
Key? key,
required this.size,
required this.numberDigits,
this.focusNode,
this.onSubmitted,
this.onChange,
this.toForward,
this.toBack,
this.hintText = "",
this.textAlign = TextAlign.center,
this.hintColor,
this.textColor,
}) : super(key: key);