File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
app/src/main/java/com/paw/key/core/designsystem/component Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package com.paw.key.core.designsystem.component
33import androidx.compose.foundation.layout.Arrangement
44import androidx.compose.foundation.layout.ExperimentalLayoutApi
55import androidx.compose.foundation.layout.FlowRow
6+ import androidx.compose.foundation.layout.fillMaxWidth
67import androidx.compose.runtime.Composable
78import androidx.compose.runtime.LaunchedEffect
89import androidx.compose.runtime.getValue
@@ -36,7 +37,7 @@ fun ChipRow(
3637 val hiddenCount = tags.size - 3 // 가려진 칩 개수
3738
3839 FlowRow (
39- modifier = modifier,
40+ modifier = modifier.fillMaxWidth() ,
4041 horizontalArrangement = Arrangement .spacedBy(8 .dp),
4142 verticalArrangement = Arrangement .spacedBy(8 .dp)
4243 ) {
You can’t perform that action at this time.
0 commit comments