You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ResponsiveRow): handle unbounded width and child controls with col=0 (#6354)
* add error handling for unbounded width in ResponsiveRow
* add test for unbounded width error in ResponsiveRow
* add tests for unbounded height in various components
* improve logging.md
* revert `NavigationRailDestination.icon` type change
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* fix#3805: treat ResponsiveRow child controls with `col=0` as hidden
* docs: clarify behavior of `col=0` in ResponsiveRow
* fix: add validation rules for ResponsiveRow columns to ensure positive values
* fix#5209: clarify possible container expansion due to alignment being set
* Update changelogs with ResponsiveRow fixes
Add entries to top-level and packages/flet CHANGELOGs documenting fixes: explicit error for unbounded width in ResponsiveRow, treating child controls with col=0 as hidden at the current breakpoint, and clarifying Container expansion behavior when alignment is set. References issues/PRs #1951, #3805, #5209, #6354 and author @ndonkoHenri.
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Feodor Fitsner <feodor@appveyor.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@
11
11
### Bug fixes
12
12
13
13
* Fix `flet build` and `flet publish` dependency parsing for `project.dependencies` and Poetry constraints with `<`/`<=`, and add coverage for normalized requirement handling ([#6332](https://github.com/flet-dev/flet/issues/6332), [#6340](https://github.com/flet-dev/flet/pull/6340)) by @td3447.
14
+
* Handle unbounded width in `ResponsiveRow` with an explicit error, treat child controls with `col=0` as hidden, and clarify `Container` expansion behavior when `alignment` is set ([#1951](https://github.com/flet-dev/flet/issues/1951), [#3805](https://github.com/flet-dev/flet/issues/3805), [#5209](https://github.com/flet-dev/flet/issues/5209), [#6354](https://github.com/flet-dev/flet/pull/6354)) by @ndonkoHenri.
14
15
* Fix `find_platform_image` selecting incompatible icon formats (e.g. `.icns` on Windows) by ranking glob results per target platform ([#6381](https://github.com/flet-dev/flet/pull/6381)) by @HG-ha.
Copy file name to clipboardExpand all lines: packages/flet/CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,8 @@
6
6
7
7
### Bug fixes
8
8
9
+
* Handle unbounded width in `ResponsiveRow` with an explicit error and treat child controls with `col=0` as hidden at the current breakpoint ([#1951](https://github.com/flet-dev/flet/issues/1951), [#3805](https://github.com/flet-dev/flet/issues/3805), [#6354](https://github.com/flet-dev/flet/pull/6354)) by @ndonkoHenri.
0 commit comments