Skip to content

Commit f1fd6b6

Browse files
committed
[FIX/#253] 업데이트 이미지 클릭 시 바텀시트가 닫히지 않도록 수정
1 parent a58c58d commit f1fd6b6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

feature/home/src/main/java/com/yapp/home/component/bottomsheet/UpdateNoticeBottomSheet.kt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import android.content.pm.PackageManager
44
import android.os.Build
55
import androidx.compose.foundation.background
66
import androidx.compose.foundation.clickable
7+
import androidx.compose.foundation.interaction.MutableInteractionSource
78
import androidx.compose.foundation.layout.Arrangement
89
import androidx.compose.foundation.layout.Box
910
import androidx.compose.foundation.layout.Column
@@ -74,7 +75,11 @@ internal fun UpdateNoticeBottomSheet(
7475
color = OrbitTheme.colors.gray_900,
7576
shape = RoundedCornerShape(topStart = 30.dp, topEnd = 30.dp),
7677
)
77-
.clip(RoundedCornerShape(topStart = 30.dp, topEnd = 30.dp)),
78+
.clip(RoundedCornerShape(topStart = 30.dp, topEnd = 30.dp))
79+
.clickable(
80+
indication = null,
81+
interactionSource = remember { MutableInteractionSource() },
82+
) { },
7883
) {
7984
if (isPreview) {
8085
// 프리뷰용 박스

0 commit comments

Comments
 (0)