Fixed marker column width instead weight 1f
This commit is contained in:
parent
d639851d19
commit
7c066c3b72
1 changed files with 2 additions and 2 deletions
|
|
@ -624,13 +624,13 @@ fun LazyVerticalGridTUO(
|
||||||
|
|
||||||
Row(
|
Row(
|
||||||
modifier = Modifier.fillMaxWidth(),
|
modifier = Modifier.fillMaxWidth(),
|
||||||
horizontalArrangement = Arrangement.Center,
|
horizontalArrangement = Arrangement.Start,
|
||||||
verticalAlignment = Alignment.CenterVertically
|
verticalAlignment = Alignment.CenterVertically
|
||||||
) {
|
) {
|
||||||
measureTUOs.forEachIndexed { indexInMeasure, tuo ->
|
measureTUOs.forEachIndexed { indexInMeasure, tuo ->
|
||||||
Column(
|
Column(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.weight(1f)
|
.width(gridWidthDp / gridColumnCount)
|
||||||
) {
|
) {
|
||||||
if (TimeUnitObject._hasMarker) {
|
if (TimeUnitObject._hasMarker) {
|
||||||
val lineHeight = 20.sp
|
val lineHeight = 20.sp
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue