FTextField constructor

const FTextField({
  1. TextEditingController? controller,
  2. String? label,
  3. String? value,
  4. String? hint,
  5. FInputType type = FInputType.text,
  6. Key? key,
  7. dynamic onChanged(
    1. String
    )?,
  8. Widget? suffixIcon,
  9. Widget? prefixIcon,
  10. bool required = true,
})

Implementation

const FTextField({this.controller,this.label, this.value, this.hint, this.type = FInputType.text, Key? key, this.onChanged, this.suffixIcon, this.prefixIcon, this.required = true}) : super(key: key);