File tree Expand file tree Collapse file tree
presentation/src/main/java/com/threegap/bitnagil/presentation/emotion Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package com.threegap.bitnagil.presentation.emotion
22
33import androidx.compose.foundation.Image
44import androidx.compose.foundation.background
5- import androidx.compose.foundation.clickable
65import androidx.compose.foundation.layout.Arrangement
76import androidx.compose.foundation.layout.Column
87import androidx.compose.foundation.layout.Spacer
@@ -25,6 +24,7 @@ import androidx.compose.ui.unit.dp
2524import androidx.hilt.navigation.compose.hiltViewModel
2625import com.threegap.bitnagil.designsystem.BitnagilTheme
2726import com.threegap.bitnagil.designsystem.component.block.BitnagilTopBar
27+ import com.threegap.bitnagil.designsystem.modifier.clickableWithoutRipple
2828import com.threegap.bitnagil.presentation.common.flow.collectAsEffect
2929import com.threegap.bitnagil.presentation.emotion.model.Emotion
3030import 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 (
You can’t perform that action at this time.
0 commit comments