Skip to content

Commit 3a2326a

Browse files
committed
chore/#120: 공통 컴포넌트 - 뷰 넘는 오류 수정
1 parent 168e1b7 commit 3a2326a

File tree

1 file changed

+2
-1
lines changed
  • app/src/main/java/com/paw/key/core/designsystem/component

1 file changed

+2
-1
lines changed

app/src/main/java/com/paw/key/core/designsystem/component/ChipRow.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package com.paw.key.core.designsystem.component
33
import androidx.compose.foundation.layout.Arrangement
44
import androidx.compose.foundation.layout.ExperimentalLayoutApi
55
import androidx.compose.foundation.layout.FlowRow
6+
import androidx.compose.foundation.layout.fillMaxWidth
67
import androidx.compose.runtime.Composable
78
import androidx.compose.runtime.LaunchedEffect
89
import 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
) {

0 commit comments

Comments
 (0)