FormTextFieldNode
data class FormTextFieldNode(val name: String, val width: Dp, val height: Dp, val value: String = "", val multiline: Boolean = false) : PdfNode
An interactive AcroForm text input field.
The renderer always paints a static visual fallback (a bordered, light-gray box with the value inside) so the document reads correctly on every backend. Only the JVM/Desktop backend additionally overlays a real interactive PDTextField widget at the same rectangle — Android's PdfDocument and iOS's Core Graphics PDF context expose no AcroForm API, so on those platforms the field is visual-only.