GBInputWrapper constructor

const GBInputWrapper({
  1. Key? key,
  2. required Widget child,
  3. String? label,
  4. Widget? labelWidget,
  5. bool appendColonToLabel = true,
  6. TextStyle? labelStyle,
  7. String? errorText,
  8. bool hasError = false,
  9. List<InputFeedbackText>? feedback,
  10. WrapWidgetBuilder? innerBoxWrapper,
  11. BoxConstraints? constraints,
})

Implementation

const GBInputWrapper({
  super.key,
  required this.child,
  this.label,
  this.labelWidget,
  this.appendColonToLabel = true,
  this.labelStyle,
  this.errorText,
  this.hasError = false,
  this.feedback,
  this.innerBoxWrapper,
  this.constraints,
});