I attempted to use a placeholder to describe text for multiline, though nothing appears. Would appreciate understanding how I am in error (the below snippet does not reveal the placeholder text):
let section2 = FormSectionDescriptor(headerTitle: "Description", footerTitle: nil)
let row3 = FormRowDescriptor(tag: Static.textView, type: .multilineText, title: "")
row3.configuration.cell.placeholder = "this is a test"
section2.rows.append(row3)