ObjectUIObjectUI

Textarea

Multi-line text input for longer content

Examples

Basic Textarea

With Label

Schema

interface TextareaSchema {
  type: 'textarea';
  name?: string;
  label?: string;
  placeholder?: string;
  rows?: number;
  required?: boolean;
  disabled?: boolean;
}

On this page