JuiInput constructor

const JuiInput({
  1. Key? key,
  2. String? label,
  3. Function? onSaved,
  4. Function? onChanged,
  5. String? initialValue,
  6. bool enabled = true,
  7. bool isPassword = false,
  8. Function? validator,
  9. String? hintText,
  10. TextInputType? keyboardType,
  11. TextEditingController? controller,
  12. void onFieldSubmitted(
    1. String
    )?,
})

Implementation

const JuiInput({
  Key? key,
  this.label,
  this.onSaved,
  this.onChanged,
  this.initialValue,
  this.enabled = true,
  this.isPassword = false,
  this.validator,
  this.hintText,
  this.keyboardType,
  this.controller,
  this.onFieldSubmitted,
}) : super(key: key);