App Bar
Top navigation bar with actions and branding.
Installation
bash
flutter_studio add appbarbash
flutter pub add flutter_studioUsage
dart
CustomAppBar(
title: 'My App',
actions: [
IconButton(
icon: Icon(Icons.settings),
onPressed: () {},
),
],
)API Reference
Properties
| Property | Type | Default | Description |
|---|---|---|---|
title | String | required | App bar title |
actions | List<Widget>? | null | Action buttons |
