Text Area
Multi-line text input component.
Installation
bash
flutter_studio add textareabash
flutter pub add flutter_studioUsage
dart
CustomTextArea(
label: 'Description',
placeholder: 'Enter description',
maxLines: 5,
onChanged: (value) {
print(value);
},
)API Reference
Properties
| Property | Type | Default | Description |
|---|---|---|---|
maxLines | int | 3 | Number of visible lines |
