Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Sep 26, 2022

Bumps fluent_ui from 3.10.0 to 4.0.0.

Release notes

Sourced from fluent_ui's releases.

4.0.0

  • BREAKING Removed NavigationBody. Use PaneItem.body instead (#510/#531):
    Before:

    NavigationView(
      pane: NavigationPane(
        items: [
          PaneItem(icon: Icon(FluentIcons.add)),
          PaneItem(icon: Icon(FluentIcons.add)),
          PaneItem(icon: Icon(FluentIcons.add)),
        ],
      ),
      content: NavigationBody(
        children: [
          _Item1(),
          _Item2(),
          _Item3(),
        ],
      ),
    ),

    Now:

    NavigationView(
      ...
      pane: NavigationPane(
        items: [
          PaneItem(
            icon: Icon(FluentIcons.add),
            body: _Item1(),
          ),
          PaneItem(
            icon: Icon(FluentIcons.add),
            body: _Item2(),
          ),
          PaneItem(
            icon: Icon(FluentIcons.add),
            body: _Item3(),
          ),
        ],
      ),
    ),

    Or if you don't have a pane, you can use the content like the following:

    NavigationView(
      content: ScaffoldPage(
        header: PageHeader(

... (truncated)

Changelog

Sourced from fluent_ui's changelog.

4.0.0

  • BREAKING Removed NavigationBody. Use PaneItem.body instead (#510/#531):
    Before:

    NavigationView(
      pane: NavigationPane(
        items: [
          PaneItem(icon: Icon(FluentIcons.add)),
          PaneItem(icon: Icon(FluentIcons.add)),
          PaneItem(icon: Icon(FluentIcons.add)),
        ],
      ),
      content: NavigationBody(
        children: [
          _Item1(),
          _Item2(),
          _Item3(),
        ],
      ),
    ),

    Now:

    NavigationView(
      ...
      pane: NavigationPane(
        items: [
          PaneItem(
            icon: Icon(FluentIcons.add),
            body: _Item1(),
          ),
          PaneItem(
            icon: Icon(FluentIcons.add),
            body: _Item2(),
          ),
          PaneItem(
            icon: Icon(FluentIcons.add),
            body: _Item3(),
          ),
        ],
      ),
    ),

    Or if you don't have a pane, you can use the content like the following:

    NavigationView(
      content: ScaffoldPage(

... (truncated)

Commits
  • 1f2944f chore: bump version
  • 12eddd2 TreeView: onExpand-callback (#453)
  • c77205e Update lazy loading example
  • 74ca398 AutoSuggestBox typing (#502)
  • fee0d0a Update to latest changes
  • d06c0e6 Merge branch 'master' into master
  • 9830329 Add onItemExpandToggle and onExpandToggle; fix unexpected behavior of lazy lo...
  • 37330ea Add onExpandToggle listener
  • 9bd0001 Update readme
  • 53322e2 Adding TestWidgetsFlutterBinding.ensureInitialized()
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 [fluent_ui](https://github.com/bdlukaa/fluent_ui) from 3.10.0 to 4.0.0.
- [Release notes](https://github.com/bdlukaa/fluent_ui/releases)
- [Changelog](https://github.com/bdlukaa/fluent_ui/blob/master/CHANGELOG.md)
- [Commits](bdlukaa/fluent_ui@v.3.10.0...v4.0.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 26, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Oct 3, 2022

Superseded by #359.

@dependabot dependabot bot closed this Oct 3, 2022
@dependabot dependabot bot deleted the dependabot/pub/simplistic_calculator/fluent_ui-4.0.0 branch October 3, 2022 23:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant