YmFormItemText constructor

YmFormItemText(
  1. String text, {
  2. String label = "",
  3. Size size = const Size(120, 44),
  4. double fontSize = 14,
  5. Color textColor = const Color(0xff666666),
  6. Color labelTextColor = const Color(0xff333333),
  7. bool required = false,
})

Implementation

YmFormItemText(this.text, {
  this.label = "",
  this.size = const Size(120, 44),
  this.fontSize = 14,
  this.textColor = const Color(0xff666666),
  this.labelTextColor = const Color(0xff333333),
  this.required = false
});