Skip to content

build(deps): bump dropdown_search from 6.0.2 to 7.0.0#152

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pub/dropdown_search-7.0.0
Open

build(deps): bump dropdown_search from 6.0.2 to 7.0.0#152
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pub/dropdown_search-7.0.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 6, 2026

Bumps dropdown_search from 6.0.2 to 7.0.0.

Changelog

Sourced from dropdown_search's changelog.

[7.0.0] - 2026.04.03

  • New Feature:

    • Add adaptive platform Ui feature: Material, Cupertino and Adaptive

    • Add autocomplete new popup mode

    • add transitionBuilder, transitionDuration, reverseTransitionDuration to menuProps

        transitionDuration: Duration(milliseconds: 500),
        transitionBuilder: (context, animation, secondaryAnimation, child) {
          return SlideTransition(
            position: Tween<Offset>(
              begin: const Offset(1, 0),
              end: Offset.zero,
            ).animate(animation),
            child: child,
          );
        }
    • add new property animationBuilder to DropdownButtonProps, examples of uses

       /* Example 1: animation with only one icon ("iconClosed") like rotation */
       animationBuilder: (child, isOpen) {
         return AnimatedRotation(
           turns: isOpen ? .5 : 0,
           duration: Duration(milliseconds: 400),
           child: child,
         );
       }
      /* Example 2 : animation with two icons like switch */
      dropdownButtonProps: DropdownButtonProps(
        iconClosed: Icon(Icons.arrow_drop_down),
        iconOpened: Icon(Icons.arrow_drop_up),
        animationBuilder: (child, isOpen) {
          return AnimatedSwitcher(
            switchOutCurve: Curves.easeIn,
            switchInCurve: Curves.easeIn,
            duration: Duration(milliseconds: 400),
            child: child,
          );
        },
      )
    • add new property layoutDelegate to MenuProps and CupertinoMenuProps, you can extend SingleChildLayoutDelegate to create your own positioning strategy

... (truncated)

Commits
  • e59a123 bump to v7.0.0
  • 772c0b4 bump to v7.0.0-pre7
  • a894cc0 bump to Flutter 3.41
  • 8b5f8c0 fix lint
  • f7737a0 - add onClear, onBeforeClear callbacks
  • 0208698 Merge pull request #778 from Erengun/master
  • 34ffed9 Merge pull request #774 from artflutter/disabled_chips
  • e7bdfde Merge pull request #784 from artflutter/expose-ability-to-listen-to-focus-change
  • 5caf513 Expose an ability to listen to focus changes
  • 4b36f22 fix: Refactor DropdownSearchState to move UI context retrieval to didChangeDe...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [dropdown_search](https://github.com/salim-lachdhaf/dropdown_search) from 6.0.2 to 7.0.0.
- [Release notes](https://github.com/salim-lachdhaf/dropdown_search/releases)
- [Changelog](https://github.com/salim-lachdhaf/dropdown_search/blob/master/CHANGELOG.md)
- [Commits](salim-lachdhaf/dropdown_search@v6.0.2...v7.0.0)

---
updated-dependencies:
- dependency-name: dropdown_search
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dart Pull requests that update Dart code dependencies Pull requests that update a dependency file labels Apr 6, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dart Pull requests that update Dart code dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants