Skip to content

Commit c5aea0f

Browse files
committed
Chore: clickable을 clickableWithoutRipple로 변경
1 parent f5c77c8 commit c5aea0f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • presentation/src/main/java/com/threegap/bitnagil/presentation/emotion

presentation/src/main/java/com/threegap/bitnagil/presentation/emotion/EmotionScreen.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package com.threegap.bitnagil.presentation.emotion
22

33
import androidx.compose.foundation.Image
44
import androidx.compose.foundation.background
5-
import androidx.compose.foundation.clickable
65
import androidx.compose.foundation.layout.Arrangement
76
import androidx.compose.foundation.layout.Column
87
import androidx.compose.foundation.layout.Spacer
@@ -25,6 +24,7 @@ import androidx.compose.ui.unit.dp
2524
import androidx.hilt.navigation.compose.hiltViewModel
2625
import com.threegap.bitnagil.designsystem.BitnagilTheme
2726
import com.threegap.bitnagil.designsystem.component.block.BitnagilTopBar
27+
import com.threegap.bitnagil.designsystem.modifier.clickableWithoutRipple
2828
import com.threegap.bitnagil.presentation.common.flow.collectAsEffect
2929
import com.threegap.bitnagil.presentation.emotion.model.Emotion
3030
import com.threegap.bitnagil.presentation.emotion.model.mvi.EmotionSideEffect
@@ -94,7 +94,7 @@ private fun EmotionScreen(
9494
items(state.emotions) { emotion ->
9595
Column(
9696
modifier = Modifier
97-
.clickable { onClickEmotion(emotion) },
97+
.clickableWithoutRipple { onClickEmotion(emotion) },
9898
horizontalAlignment = Alignment.CenterHorizontally,
9999
) {
100100
Image(

0 commit comments

Comments
 (0)