Skip to content

Bottom Sheet

Slide-up modal panels from the bottom.

Installation

bash
flutter_studio add bottomsheet
bash
flutter pub add flutter_studio

Usage

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

PropertyTypeDefaultDescription
titleString?nullSheet title
childWidgetrequiredSheet content