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
74 stars 84 forks source link

Expose on search change #119

Closed alesalv closed 3 months ago

alesalv commented 3 months ago

This PR exposes the on search change callback, so that users of MultiDropdown can listen to changes in the search text field:

return MultiDropdown.future(
  onSearchChange: (final value) {
    debugPrint('**** search changed: $value');
  },
}