TextFieldOverlay constructor

const TextFieldOverlay({
  1. required String value,
  2. required ValueChanged<String> onChanged,
  3. required double fontSize,
  4. required double fieldHeight,
  5. Key? key,
  6. bool isMultiline = false,
  7. bool isReadOnly = false,
  8. int? maxLength,
  9. PdfTextAlignment alignment = PdfTextAlignment.left,
})

Creates a TextFieldOverlay.

Implementation

const TextFieldOverlay({
  required this.value,
  required this.onChanged,
  required this.fontSize,
  required this.fieldHeight,
  super.key,
  this.isMultiline = false,
  this.isReadOnly = false,
  this.maxLength,
  this.alignment = PdfTextAlignment.left,
});