ComponentsNotificationThe Notification component is used to deliver important messages, alerts, or updates to users within an application or website.

Guidelines
Mobile
Resources
- You can use these components by accessing the provided resource files.
- Preview animations are examples and may not suit Mobile Widgets. Press 'View Code' to access the Widgetbook Playground and see the Flutter widget displaying all created components and interactive.
Usage
Import this line to your file:
import 'package:buma_design_system/buma_design_system.dart';
Attributes
If there is a question mark ? in the Data Type.
| Properties | Data Type | Description | Default Value |
|---|---|---|---|
| placeholder | String? | Displays placeholder in item of notification | null |
| title | String | Displays title text | null |
| desc | String | `Displays description text | null |
| isRead | bool | State when notification has read | false |
UINotificationItem
UINotificationItem(
title: 'Title',
placeholder: 'Placeholder',
desc: 'Description',
isRead: true,
)