MoonInputField constructor
const
MoonInputField({
- Key? key,
- required TextEditingController controller,
- String? label,
- String? hint,
- bool isEnabled = true,
- bool isError = false,
- TextInputType keyboardType = TextInputType.text,
Implementation
const MoonInputField({
super.key,
required this.controller,
this.label,
this.hint,
this.isEnabled = true,
this.isError = false,
this.keyboardType = TextInputType.text,
});