TFormRow.input constructor

TFormRow.input({
  1. String? tag,
  2. String title = "",
  3. String? value = "",
  4. String? placeholder = "请输入",
  5. bool? require = true,
  6. bool? requireStar = false,
  7. bool? enabled = true,
  8. String? requireMsg,
  9. void onChanged(
    1. TFormRow
    )?,
  10. bool validator(
    1. TFormRow
    )?,
  11. Widget suffixWidget(
    1. BuildContext,
    2. TFormRow
    )?,
  12. int? maxLength,
  13. TFormFieldConfig? fieldConfig,
  14. int? maxLines,
  15. TextInputType? keyboardType,
  16. OverlayVisibilityMode? clearButtonMode = OverlayVisibilityMode.editing,
  17. bool? obscureText,
  18. dynamic state,
  19. TextAlign? textAlign = TextAlign.left,
})

输入

Implementation

TFormRow.input({
  this.tag,
  this.title = "",
  this.value = "",
  this.placeholder = "请输入",
  this.require = true,
  this.requireStar = false,
  this.enabled = true,
  this.requireMsg,
  this.onChanged,
  this.validator,
  this.suffixWidget,
  this.maxLength,
  this.fieldConfig,
  this.maxLines,
  this.keyboardType,
  this.clearButtonMode = OverlayVisibilityMode.editing,
  this.obscureText,
  this.state,
  this.textAlign = TextAlign.left,
}) {
  type = TFormRowTypeInput;
}