TInputContainer constructor

const TInputContainer({
  1. Key? key,
  2. TInputFieldTheme? theme,
  3. TInputSize? size,
  4. Widget? child,
  5. double? width,
  6. double? height,
  7. bool block = true,
  8. AlignmentGeometry alignment = Alignment.center,
  9. EdgeInsetsGeometry? padding,
  10. bool disabled = false,
  11. bool hasError = false,
  12. bool isFocused = false,
  13. VoidCallback? onTap,
  14. MouseCursor? cursor,
})

Implementation

const TInputContainer({
  super.key,
  this.theme,
  this.size,
  this.child,
  this.width,
  this.height,
  this.block = true,
  this.alignment = Alignment.center,
  this.padding,
  this.disabled = false,
  this.hasError = false,
  this.isFocused = false,
  this.onTap,
  this.cursor,
});