TolyInputArea constructor

const TolyInputArea({
  1. Key? key,
  2. RangeValues widthRange = const RangeValues(60, 400),
  3. RangeValues heightRange = const RangeValues(24, 400),
  4. String hitText = 'Please Input',
  5. ResizeType resizeType = ResizeType.size,
  6. Size size = const Size(160, 80),
  7. InputBorder? focusedBorder,
  8. InputBorder? enabledBorder,
  9. Color? fillColor,
  10. TextEditingController? controller,
  11. InputBorder? border,
  12. TextStyle? style,
})

Implementation

const TolyInputArea({
  super.key,
  this.widthRange = const RangeValues(60, 400),
  this.heightRange = const RangeValues(24, 400),
  this.hitText = 'Please Input',
  this.resizeType = ResizeType.size,
  this.size = const Size(160, 80),
  this.focusedBorder,
  this.enabledBorder,
  this.fillColor,
  this.controller,
  this.border,
  this.style,
});