BioSection constructor

const BioSection({
  1. Key? key,
  2. TextEditingController? controller,
  3. bool? readOnly,
  4. EdgeInsets? padding,
  5. EdgeInsets? margin,
  6. double? radius,
  7. Color? borderColor,
  8. Color? filledColor,
  9. bool isFilled = true,
  10. String? hint,
  11. TextStyle? hintStyle,
  12. TextStyle? textStyle,
  13. String? label,
  14. TextStyle? labelStyle,
  15. TextInputType? inputType = TextInputType.multiline,
  16. int noOfLines = 4,
  17. String? suffixText,
  18. TextStyle? suffixTextStyle,
  19. Widget? prefixIcon,
  20. TextAlign? textAlign = TextAlign.start,
  21. int? maxLength = 500,
  22. dynamic onChange(
    1. String
    )?,
  23. FocusNode? node,
  24. Widget? suffixIcon,
  25. Widget? suffix,
  26. List<TextInputFormatter>? inputFormat,
  27. String? error,
  28. BoxConstraints? prefixIconConstraints,
  29. dynamic onTap()?,
  30. bool isOptional = false,
  31. bool obscureText = false,
  32. String? validator(
    1. String?
    )?,
  33. AutovalidateMode? autovalidateMode,
  34. bool showHint = true,
})

Implementation

const BioSection({
  super.key,
  this.controller,
  this.readOnly,
  this.padding,
  this.margin,
  this.radius,
  this.borderColor,
  this.filledColor,
  this.isFilled = true,
  this.hint,
  this.hintStyle,
  this.textStyle,
  this.label,
  this.labelStyle,
  this.inputType = TextInputType.multiline,
  this.noOfLines = 4,
  this.suffixText,
  this.suffixTextStyle,
  this.prefixIcon,
  this.textAlign = TextAlign.start,
  this.maxLength = 500,
  this.onChange,
  this.node,
  this.suffixIcon,
  this.suffix,
  this.inputFormat,
  this.error,
  this.prefixIconConstraints,
  this.onTap,
  this.isOptional = false,
  this.obscureText = false,
  this.validator,
  this.autovalidateMode,
  this.showHint = true,
});