Skip to content

A customizable and scrollable bottom sheet widget for Flutter.

License

Notifications You must be signed in to change notification settings

tungdevpro/sheetable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sheetable

Pub Version

A customizable and scrollable bottom sheet widget for Flutter.

✨ Features

  • Drag to resize
  • Optional full height
  • Auto expand when content scrolls to top
  • Custom scrollable content
  • onSheetHidden callback

🚀 Usage

SheetableWidget(
    contentBuilder: (scrollController) {
        return ListView.builder(
            controller: scrollController,
            itemCount: 20,
            itemBuilder: (context, index) => ListTile(title: Text('Item $index')),
        );
    },
    onSheetHidden: () => print('Sheet hidden'),
)

About

A customizable and scrollable bottom sheet widget for Flutter.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published