TFormRow constructor

TFormRow({
  1. String? tag,
  2. String type = TFormRowTypeInput,
  3. Widget widgetBuilder(
    1. BuildContext,
    2. TFormRow
    )?,
  4. Widget suffixWidget(
    1. BuildContext,
    2. TFormRow
    )?,
  5. Widget? widget,
  6. dynamic state,
  7. int? maxLength,
  8. String title = "",
  9. String value = "",
  10. bool require = false,
  11. bool requireStar = false,
  12. bool enabled = true,
  13. String placeholder = "",
  14. String? requireMsg,
  15. List? options,
  16. void onChanged(
    1. TFormRow
    )?,
  17. Future onTap(
    1. BuildContext,
    2. TFormRow
    )?,
  18. bool validator(
    1. TFormRow
    )?,
  19. TFormFieldConfig? fieldConfig,
  20. TextInputType? keyboardType,
  21. OverlayVisibilityMode clearButtonMode = OverlayVisibilityMode.editing,
  22. bool? obscureText,
  23. TextAlign textAlign = TextAlign.right,
  24. int? maxLines,
  25. DateMode? mode,
})

Implementation

TFormRow({
  this.tag,
  this.type = TFormRowTypeInput,
  this.widgetBuilder,
  this.suffixWidget,
  this.widget,
  this.state,
  this.maxLength,
  this.title = "",
  this.value = "",
  this.require = false,
  this.requireStar = false,
  this.enabled = true,
  this.placeholder = "",
  this.requireMsg,
  this.options,
  this.onChanged,
  this.onTap,
  this.validator,
  this.fieldConfig,
  this.keyboardType,
  this.clearButtonMode = OverlayVisibilityMode.editing,
  this.obscureText,
  this.textAlign = TextAlign.right,
  this.maxLines,
  this.mode,
});