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 = true,
  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. int? maxLines,
  19. bool validator(
    1. TFormRow
    )?,
  20. TFormFieldConfig? fieldConfig,
  21. TextInputType? keyboardType,
  22. OverlayVisibilityMode? clearButtonMode = OverlayVisibilityMode.editing,
  23. bool? obscureText,
  24. TextAlign? textAlign = TextAlign.right,
})

Implementation

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