XTextFieldBody constructor

const XTextFieldBody({
  1. String label = "",
  2. required Widget child,
  3. Widget? rightIcon,
  4. dynamic onTapRight()?,
  5. EdgeInsets? padding,
  6. bool readOnly = false,
  7. String? fontFamily,
  8. Key? key,
})

Implementation

const XTextFieldBody({
  this.label = "",
  required this.child,
  this.rightIcon,
  this.onTapRight,
  this.padding,
  this.readOnly = false,
  this.fontFamily,
  super.key,
});