Bottom Sheet
Slide-up modal panels from the bottom.
Installation
bash
flutter_studio add bottomsheetbash
flutter pub add flutter_studioUsage
dart
CustomBottomSheet.show(
context,
title: 'Share',
child: Column(
children: [
ListTile(
leading: Icon(Icons.link),
title: Text('Copy link'),
onTap: () {},
),
ListTile(
leading: Icon(Icons.email),
title: Text('Email'),
onTap: () {},
),
],
),
)API Reference
Properties
| Property | Type | Default | Description |
|---|---|---|---|
title | String? | null | Sheet title |
child | Widget | required | Sheet content |
