searchable_dropdown_sheet 0.0.1 copy "searchable_dropdown_sheet: ^0.0.1" to clipboard
searchable_dropdown_sheet: ^0.0.1 copied to clipboard

A customizable, searchable modal dropdown sheet for Flutter using modal_bottom_sheet.

searchable_dropdown_sheet #

A customizable, searchable dropdown modal sheet for Flutter. Built using the modal_bottom_sheet package.

Features #

  • Searchable list
  • Selectable items
  • Beautiful modal UI
  • Easy integration

Usage #

import 'package:searchable_dropdown_sheet/searchable_dropdown_sheet.dart';

// Inside your widget:
showBarModalBottomSheet(
  context: context,
  builder: (_) => SearchableDropdownSheet(
    title: 'Choose Fruit',
    subtitle: 'Search or scroll',
    items: ['Apple', 'Banana', 'Mango'],
    selectedItem: _controller.text,
    onItemSelected: (value) {
      setState(() => _controller.text = value);
    },
  ),
);
1
likes
130
points
14
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A customizable, searchable modal dropdown sheet for Flutter using modal_bottom_sheet.

Repository (GitHub)
View/report issues

Topics

#modal #dropdown #searchable #sheet #flutter-ui

License

MIT (license)

Dependencies

flutter, modal_bottom_sheet

More

Packages that depend on searchable_dropdown_sheet