CustomTextField constructor

CustomTextField({
  1. dynamic focusNode,
  2. String? hint,
  3. Icon? leadingIcon,
  4. Icon? trailingIcon,
  5. TextEditingController? controller,
  6. TextInputType keyboardType = TextInputType.text,
  7. bool obscure = false,
  8. bool enable = true,
  9. int? maxLines,
  10. double? height,
  11. Color fillColor = Colors.transparent,
})

Implementation

CustomTextField(
    {this.focusNode,
    this.hint,
    this.leadingIcon,
    this.trailingIcon,
    this.controller,
    this.keyboardType = TextInputType.text,
    this.obscure = false,
    this.enable = true,
    this.maxLines,
    this.height,
    this.fillColor = Colors.transparent});