CustomInputWidget constructor
const
CustomInputWidget(
- String label,
- TextEditingController controller, {
- Key? key,
- TextInputType type = TextInputType.text,
- bool required = false,
- bool isPassword = false,
This is a custom widget for text input
Implementation
const CustomInputWidget(
this.label,
this.controller, {
super.key,
this.type = TextInputType.text,
this.required = false,
this.isPassword = false,
});