FixedSymbolsInput constructor
const
FixedSymbolsInput({
- Key? key,
- required double size,
- required int numberSymbols,
- void onSubmitted(
- String value
- List<
TextInputFormatter> ? inputFormatters, - FocusNode? focusNode,
- void onChange(
- String value
- void toForward(
- String value
- void toBack(
- String value
- TextInputType? keyboardType,
- String hintText = "",
- Color? hintColor,
- TextAlign textAlign = TextAlign.center,
- Color? textColor,
Implementation
const FixedSymbolsInput({
Key? key,
required this.size,
required this.numberSymbols,
this.onSubmitted,
this.inputFormatters,
this.focusNode,
this.onChange,
this.toForward,
this.toBack,
this.keyboardType,
this.hintText = "",
this.hintColor,
this.textAlign = TextAlign.center,
this.textColor,
}) : super(key: key);