Empty
Empty state placeholders with messaging.
Installation
bash
flutter_studio add emptybash
flutter pub add flutter_studioUsage
dart
CustomEmpty(
icon: Icons.inbox,
title: 'No messages',
description: 'You have no messages at this time',
action: CustomButton(
text: 'Compose',
onPressed: () {},
),
)API Reference
Properties
| Property | Type | Default | Description |
|---|---|---|---|
icon | IconData? | null | Empty state icon |
title | String | required | Empty state title |
description | String? | null | Description text |
