flexible_dropdown 1.0.1 copy "flexible_dropdown: ^1.0.1" to clipboard
flexible_dropdown: ^1.0.1 copied to clipboard

Allows the dropdown to be dismissed by tapping | panning the scrim and Set transparent for header(Barrier)

Flexible Dropdown Package #

[![pub package version](https://img.shields.io/pub/v/flexible_dropdown)](https://pub.dev/packages/flexible_dropdown)

Features #

  • Customize dropdown

  • Auto scroll to selected item position

  • Support BarrierShape.headerTrans to highlight the content above the flexible dropdown button

  • Allows the dropdown to be dismissed by tapping | panning the scrim or by pressing the escape key on the keyboard.

Installation #

First, add flexible_dropdown as a dependency in your pubspec.yaml file.

dependencies
  flexible_dropdown: ^1.0.1

Usage #

FlexibleDropdown(
  overlayChild: Container(
    height: 160,
    width: double.infinity,
    color: Colors.deepPurple,
  ),
  barrierColor: Colors.black38.withOpacity(.2),
  barrierShape: BarrierShape.headerTrans,
  textDirection: TextDirection.ltr,
  offset: Offset.zero,
  child: Container(
    decoration: BoxDecoration(
      borderRadius: BorderRadius.circular(6),
      color: Colors.blueAccent.withOpacity(.2),
    ),
    child: Padding(
      padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 20),
      child: Text(
        title,
        style: const TextStyle(fontSize: 14, fontWeight: FontWeight.w500),
      ),
    ),
  ),
)

example

15
likes
0
pub points
80%
popularity

Publisher

unverified uploader

Allows the dropdown to be dismissed by tapping | panning the scrim and Set transparent for header(Barrier)

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flexible_dropdown