File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 2.4.0
4+
5+ _ 2025.08.01_
6+
7+ This release contains ** breaking changes** for the experimental feature, ` BoxGrid ` .
8+ ` BoxGridScope ` 's ` rowSpan ` and ` columnSpan ` modifier is replaced to ` span ` modifier.
9+ And also ` span ` modifier's parameter now receive ` BoxGridItemSpanScope ` instead of ` GridItemSpanScope ` .
10+ It contains more information for calculating box grid item span.
11+
12+ ### Changed
13+
14+ - Add ` Modifier.position ` to ` BoxGridScope ` for setting row/column cell position at the same time.
15+ - Add ` Modifier.span ` to ` BoxGridScope ` for setting row/column span at the same time.
16+ - Add ` BoxGridItemSpanScope ` for ` span ` modifier of ` BoxGridScope ` .
17+ - Add ` BoxGridItemSpan ` . It is a container represents row/column span size.
18+ - Remove ` Modifier.rowSpan ` and ` Modifier.columnSpan ` from ` BoxGridScope ` .
19+ - Remove deprecated ` HorizontalGrid ` and ` VerticalGrid ` with ` alignment ` parameter.
20+ Replace it to composable with ` contentAlignment ` parameter.
21+ - Fix remaining cell size distribution of ` SimpleGridCell ` more properly.
22+
323## 2.3.2
424
5- ### Change
25+ ### Changed
626
727_ 2025.07.05_
828
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ plugins {
1515
1616allprojects {
1717 group = " com.cheonjaeung.compose.grid"
18- version = " 2.3.2 "
18+ version = " 2.4.0 "
1919
2020 repositories {
2121 maven {
You can’t perform that action at this time.
0 commit comments