Fixed marker column width instead weight 1f

This commit is contained in:
hasinarak3@gmail.com 2026-03-25 10:19:38 +03:00
parent d639851d19
commit 7c066c3b72

View file

@ -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