-
fix: Add missing properties (
closeIconSize
,closeButtonStyle
) indebugFillProperties
andInfoBarThemeData.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 ofColor
inNavigationAppBar
(#1118) -
feat: Add
EditableComboBox.inputFormatters
(#1041) -
BREAKING feat:
TextBox.decoration
andTextBox.foregroundDecoration
are now of typeWidgetStateProperty
(#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
- Add missing properties in InfoBarThemeData.merge by @WinXaito in #1128
- feat: Make the example work on Linux by @iamsergio in #1129
- Add support for reserved footer area by @diluculo in #1137
- Fix(menu): boundary by @web-liuyang in #1131
- Make text box decorations affected by the current widget state by @hassony105 in #987
- Implements ColorPicker by @diluculo in #1152
- Localization for ColorPicker by @diluculo in #1154
- Flutter latest by @bdlukaa in #1156
New Contributors
- @iamsergio made their first contribution in #1129
- @diluculo made their first contribution in #1137
- @web-liuyang made their first contribution in #1131
- @hassony105 made their first contribution in #987
Full Changelog: v4.9.2...v4.10.0