CustomTextField constructor

const CustomTextField({
  1. Key? key,
  2. required String hintText,
  3. String? initialText,
  4. TextEditingController? controller,
  5. bool isFilled = false,
  6. bool readOnly = false,
  7. dynamic onChanged(
    1. String
    )?,
  8. int minLines = 1,
  9. int maxLines = 1,
})

Implementation

const CustomTextField(
    {super.key,
    required this.hintText,
    this.initialText,
    this.controller,
    this.isFilled = false,
    this.readOnly = false,
    this.onChanged,
    this.minLines = 1,
    this.maxLines = 1});