quanht_dropdown_custom 0.0.3
quanht_dropdown_custom: ^0.0.3 copied to clipboard
A dropdown component that automatically enables scroll-down functionality when the total height of the dropdown content exceeds the visible or defined space
I need help to update this package because I'm not playing with dart anymore #
Breaking Changes in v0.0.2 #
- The
AppDropListwidget support data list for not enough space. - The
parentScrollControllerthis is ScrollController of screen when scroll auto close dropdown. - The
DropListItemclass has replaced theDropdownItemclass. onChangehas been replaced withonChange. TheonChangecallback is called whenever the selection changes in the dropdown, whether it is selected or deselected.- A lot of parameters have been renamed and updated. Please check the documentation for the updated parameters.
Droplist - yet another Droplist !! #
Dropdown_custom can control space of list data when not enough space
Simple use #
If you want to control auto close dropdown when scroll need to add parentScrollController in widget #
scrollController is a scrollController of screen #
AppDropList( onChange: (output) {}, items:
Preview #
Use with controls #
import 'package:quanht_dropdown_custom/quanht_dropdown_custom.dart';
AppDropList(
onChange: (output) {},
items: <DropListItem>[],
label: '@label',
colorLabel: Colors.black,
hintText: '@hintxt',
enabled: true,
dropdownButtonStyle: const DropdownButtonStyle(
height: 48,
),
dropdownStyle: const DropdownStyle(elevation: 2),
),



