Skip to content

Commit

Permalink
오픈소스 라이센스 카드 클릭 시 카드 영역 밖으로 리플 효과 나타나지 않도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
onseok committed Aug 31, 2023
1 parent 7060fa3 commit eab4836
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package com.droidknights.app2023.feature.setting.opensource
import android.content.Context
import android.content.Intent
import androidx.compose.foundation.Image
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.padding
Expand Down Expand Up @@ -31,10 +30,10 @@ internal fun OpenSourceCard(

KnightsCard(
color = Graphite,
modifier = modifier
.clickable {
context.startActivity(Intent(context, OssLicensesMenuActivity::class.java))
},
modifier = modifier,
onClick = {
context.startActivity(Intent(context, OssLicensesMenuActivity::class.java))
}
) {
Column {
Text(
Expand Down

0 comments on commit eab4836

Please sign in to comment.