OutlineNumberTextField constructor
const
OutlineNumberTextField({
- required TextEditingController controller,
- required String hintText,
- required void onTapClear(),
- TextInputType inputType = TextInputType.text,
- TextInputAction inputAction = TextInputAction.next,
- int maxLength = TextField.noMaxLength,
- void onChanged()?,
- Key? key,
Implementation
const OutlineNumberTextField({
required this.controller,
required this.hintText,
required this.onTapClear,
this.inputType = TextInputType.text,
this.inputAction = TextInputAction.next,
this.maxLength = TextField.noMaxLength,
this.onChanged,
super.key,
});