oi-narendra / multiselect-dropdown

Streamlined Flutter widget for versatile multi-selection with extensive customization.
https://pub.dev/packages/multi_dropdown
GNU General Public License v3.0
73 stars 82 forks source link

Not able to pick menu option if selecting after search on web platform #43

Closed MirzaAhmedBaig closed 11 months ago

MirzaAhmedBaig commented 11 months ago

This how i have added this widget

MultiSelectDropDown(
                hintStyle: AppTextStyles.bodyTextBig
                    .override(color: AppColors.appLightBlue),
                hint: 'Select Qualification',
                onOptionSelected: (values) {},
                padding: const EdgeInsets.only(
                    top: AppDimensions.spacingMedium,
                    left: AppDimensions.spacingSmall,
                    right: AppDimensions.spacingSmall,
                    bottom: AppDimensions.spacingMedium),
                options: courseEntries
                    .map((e) =>
                        ValueItem(label: e.label, value: e.value.toString()))
                    .toList(),
                selectionType: SelectionType.multi,
                chipConfig:
                    const ChipConfig(wrapType: WrapType.wrap, spacing: 20),
                dropdownHeight: 300,
                optionTextStyle: AppTextStyles.bodyTextBig
                    .override(color: AppColors.appLightBlue),
                selectedOptionIcon: const Icon(Icons.check_circle),
                inputDecoration: const BoxDecoration(
                  border: Border(
                    bottom:
                        BorderSide(width: 1, color: AppColors.appLightBlue),
                  ),
                ),
                searchEnabled: true,
                showChipInSingleSelectMode: true,
              )

but when i am trying to select any item from the search result its not getting added to selected list.

FilipeMoreira commented 11 months ago

Same problem here, any ideas?

EduardoYamauchi commented 11 months ago

Same problems here, any updates?