Skip to content

Text Area

Multi-line text input component.

Installation

bash
flutter_studio add textarea
bash
flutter pub add flutter_studio

Usage

dart
CustomTextArea(
  label: 'Description',
  placeholder: 'Enter description',
  maxLines: 5,
  onChanged: (value) {
    print(value);
  },
)

API Reference

Properties

PropertyTypeDefaultDescription
maxLinesint3Number of visible lines