WuiFormField constructor

const WuiFormField({
  1. Key? key,
  2. TextEditingController? controller,
  3. FocusNode? focusNode,
  4. String? labelText,
  5. Widget? inputSuffix,
  6. Widget? inputPrefix,
  7. Widget? leading,
  8. Widget? trailing,
  9. TextInputType? keyboardType,
  10. bool readOnly = false,
  11. String? placeholderText,
  12. bool obscureText = false,
  13. bool autoFocus = false,
})

Implementation

const WuiFormField({
  Key? key,
  this.controller,
  this.focusNode,
  this.labelText ,
  this.inputSuffix,
  this.inputPrefix,
  this.leading,
  this.trailing,
  this.keyboardType,
  this.readOnly = false,
  this.placeholderText,
  this.obscureText = false,
  this.autoFocus = false
}) : super(key: key);