| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2024-12-13 | 3.6 kB | |
| v4.10.0 - Flutter 3.27 source code.tar.gz | 2024-12-13 | 1.2 MB | |
| v4.10.0 - Flutter 3.27 source code.zip | 2024-12-13 | 1.4 MB | |
| Totals: 3 Items | 2.6 MB | 0 | |
- fix: Add missing properties (
closeIconSize,closeButtonStyle) indebugFillPropertiesandInfoBarThemeData.merge(#1128 - feat: Add
TabView.reservedStripWidth, which adds a minimum empty area between the tabs and the tab view footer (#1106)] - fix: Correctly unfocus
NumberBoxwhen user taps outside (#1135) - fix: Do try to scroll Date and Time at build time (#1117)
- feat: Use a
Decorationinstead ofColorinNavigationAppBar(#1118) - feat: Add
EditableComboBox.inputFormatters(#1041) - BREAKING feat:
TextBox.decorationandTextBox.foregroundDecorationare now of typeWidgetStateProperty(#987)
Before:
dart
TextBox(
decoration: BoxDecoration(
color: Colors.red,
),
foregroundDecoration: BoxDecoration(
color: Colors.blue,
),
),
After:
dart
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:
TimePickerhour offset - feat: Add
ColorPicker(#1152) - fix:
NumberBoxinitial value formatting (#1153) - fix:
NumberBoxincrementing/decrementing when not focused (#1124) - fix:
NumberBoxtext is correctly when there are no visible actions (#1150)
What's Changed
- Add missing properties in InfoBarThemeData.merge by @WinXaito in https://github.com/bdlukaa/fluent_ui/pull/1128
- feat: Make the example work on Linux by @iamsergio in https://github.com/bdlukaa/fluent_ui/pull/1129
- Add support for reserved footer area by @diluculo in https://github.com/bdlukaa/fluent_ui/pull/1137
- Fix(menu): boundary by @web-liuyang in https://github.com/bdlukaa/fluent_ui/pull/1131
- Make text box decorations affected by the current widget state by @hassony105 in https://github.com/bdlukaa/fluent_ui/pull/987
- Implements ColorPicker by @diluculo in https://github.com/bdlukaa/fluent_ui/pull/1152
- Localization for ColorPicker by @diluculo in https://github.com/bdlukaa/fluent_ui/pull/1154
- Flutter latest by @bdlukaa in https://github.com/bdlukaa/fluent_ui/pull/1156
New Contributors
- @iamsergio made their first contribution in https://github.com/bdlukaa/fluent_ui/pull/1129
- @diluculo made their first contribution in https://github.com/bdlukaa/fluent_ui/pull/1137
- @web-liuyang made their first contribution in https://github.com/bdlukaa/fluent_ui/pull/1131
- @hassony105 made their first contribution in https://github.com/bdlukaa/fluent_ui/pull/987
Full Changelog: https://github.com/bdlukaa/fluent_ui/compare/v4.9.2...v4.10.0