modifier = Modifier .width(280.dp) .height(40.dp) .clickable( interactionSource = remember { MutableInteractionSource() }, indication = null ) { onClickText() },
클릭할 때 이미지 영역 전체에 ripple 효과가 적용된다. 빼는게 더 이쁘기 때문에 clickable에서 indication을 null로 비운다.