Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 27, 2025

Bumps fluent_ui from 4.11.3 to 4.12.0.

Release notes

Sourced from fluent_ui's releases.

v4.10.0 - Flutter 3.27

  • fix: Add missing properties (closeIconSize, closeButtonStyle) in debugFillProperties and InfoBarThemeData.merge (#1128

  • feat: Add TabView.reservedStripWidth, which adds a minimum empty area between the tabs and the tab view footer (#1106)]

  • fix: Correctly unfocus NumberBox when user taps outside (#1135)

  • fix: Do try to scroll Date and Time at build time (#1117)

  • feat: Use a Decoration instead of Color in NavigationAppBar (#1118)

  • feat: Add EditableComboBox.inputFormatters (#1041)

  • BREAKING feat: TextBox.decoration and TextBox.foregroundDecoration are now of type WidgetStateProperty (#987)

    Before:

    TextBox(
      decoration: BoxDecoration(
        color: Colors.red,
      ),
      foregroundDecoration: BoxDecoration(
        color: Colors.blue,
      ),
    ),

    After:

    TextBox(
      decoration: WidgetStateProperty.all(BoxDecoration(
        color: Colors.red,
      )),
      foregroundDecoration: WidgetStateProperty.all(BoxDecoration(
        color: Colors.blue,
      )),
    ),
  • feat: Add TabView.gestures, which allows the manipulation of the tab gestures (#1138)

  • feat: Add DropDownButton.style (#1139)

  • feat: Possibility to open date and time pickers programatically (#1142)

  • fix: TimePicker hour offset

  • feat: Add ColorPicker (#1152)

  • fix: NumberBox initial value formatting (#1153)

  • fix: NumberBox incrementing/decrementing when not focused (#1124)

  • fix: NumberBox text is correctly when there are no visible actions (#1150)

What's Changed

... (truncated)

Changelog

Sourced from fluent_ui's changelog.

4.12.0

  • feat: Support Flutter 3.32
  • feat: Added TextBox.onTapUpOutside, TextBox.forceLine, TextBox.mouseCursor, TextBox.onAppPrivateCommand, TextBox.onSelectionHandleTapped, TextBox.scrollBehavior, TextBox.textScaler, TextBox.textHeightBehavior, TextBox.textWidthBasis.
  • feat: Removed TextBox.clearButtonMode (#1225)
  • fix: FlyoutController being used after disposed (#1224)

4.11.5

  • fix: Add missing translations for French (#1217)
  • fix: Add missing translations for Spanish (58bfc)
  • fix: Context Menu was not available on TextFormBox (#1216, #1219)
  • fix: Undo entry was doubled in EditableText context menu (#1218)

4.11.4

  • feat: Added Tagalog localization support (#1207)

  • feat: Added ListTile.decorationMargin parameter

  • fix: Custom ContextMenuButtonItem are correctly displayed on text selection control (#1212)

  • fix: TreeView's focus always starts at first or last item (#834, #1195)

  • fix: InfoBar no longer throw error when automatically closing (#955, #1215)

  • fix: Properly disable date and time pickers when onChanged is null (#1210)

  • fix: MenuFlyoutSubItem no longer errors while building when FlyoutPlacementMode.auto is used (#1206, #1191)

  • fix: The checkbox inside ListTile.selectable should not have its own focus (#1144)

  • feat: BaseButton.onTapUp reflects the GestureDetector.onTapUp (#1201)

  • feat: Add BreadcrumbBar.chevronAlignment (#1213)

  • MINOR BREAKING feat: Tab.backgroundColor, Tab.selectedBackgroundColor, Tab.foregroundColor, Tab.selectedForegroundColor and Tab.outlineColor are now instance of WidgetStateProperty<Color>. (#1214) Before:

    Tab(
      backgroundColor: FluentTheme.of(context).inactiveColor,
      selectedBackgroundColor: Colors.blue,
      foregroundColor: Colors.white,
      selectedForegroundColor: Colors.black,
      outlineColor: Colors.grey,
    ),

    After:

    Tab(
      backgroundColor: WidgetStateProperty.resolveWith((_) {
        return FluentTheme.of(context).inactiveColor;
      }),
      selectedBackgroundColor: WidgetStateProperty.all(Colors.blue),
      foregroundColor: WidgetStateProperty.all(Colors.white),
      selectedForegroundColor: WidgetStateProperty.all(Colors.black),
      outlineColor: WidgetStateProperty.all(Colors.grey),

... (truncated)

Commits

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 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)

@dependabot dependabot bot added dart Pull requests that update Dart code dependencies Pull requests that update a dependency file labels Oct 27, 2025
@dependabot dependabot bot force-pushed the dependabot/pub/fluent_ui-4.12.0 branch from 8cb3b2b to c5503c7 Compare November 10, 2025 03:18
Bumps [fluent_ui](https://github.com/bdlukaa/fluent_ui) from 4.11.3 to 4.12.0.
- [Release notes](https://github.com/bdlukaa/fluent_ui/releases)
- [Changelog](https://github.com/bdlukaa/fluent_ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/bdlukaa/fluent_ui/commits)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pub/fluent_ui-4.12.0 branch from c5503c7 to 6b91d8c Compare November 15, 2025 14:31
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.

1 participant