File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
feature/home/src/main/java/com/yapp/home/component/bottomsheet Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import android.content.pm.PackageManager
44import android.os.Build
55import androidx.compose.foundation.background
66import androidx.compose.foundation.clickable
7+ import androidx.compose.foundation.interaction.MutableInteractionSource
78import androidx.compose.foundation.layout.Arrangement
89import androidx.compose.foundation.layout.Box
910import 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 // 프리뷰용 박스
You can’t perform that action at this time.
0 commit comments