InputItem constructor
InputItem({
- required dynamic onChanged(),
- required String hintText,
- required TextStyle style,
- required TextStyle hintStyle,
- Color? color,
- double borderWidth = 0.5,
- EdgeInsetsGeometry? padding,
- TextAlign textAlign = TextAlign.start,
- TextInputType textInputType = TextInputType.text,
- TextEditingController? controller,
- Key? key,
Implementation
InputItem(
{required this.onChanged,
required this.hintText,
required this.style,
required this.hintStyle,
this.color,
this.borderWidth = 0.5,
this.padding,
this.textAlign = TextAlign.start,
this.textInputType = TextInputType.text,
this.controller,
Key? key})
: super(key: key);