-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feat/#66] SearchResultItem 구현 #69
base: develop
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다!
.fillMaxWidth() | ||
.border(1.dp, SpoonyAndroidTheme.colors.gray100) | ||
.background(Color.White) | ||
.noRippleClickable { onResultClick } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p4) 불필요한 람다를 생성하지 않고 바로 사용해주세요~
.noRippleClickable { onResultClick } | |
.noRippleClickable(onClick = onResultClick) |
imageVector = ImageVector.vectorResource(id = R.drawable.ic_delete_filled_24), | ||
contentDescription = null, | ||
tint = SpoonyAndroidTheme.colors.gray400, | ||
modifier = Modifier.noRippleClickable { onDeleteClick } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p4) 여기도!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다!! 텍스트 설정만 바꿔주세요~~!!
Text( | ||
text = placeName, | ||
style = SpoonyAndroidTheme.typography.body2b, | ||
color = SpoonyAndroidTheme.colors.black, | ||
maxLines = 1 | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P2: 여기도 overflow 설정해주세요!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다!
Icon( | ||
imageVector = ImageVector.vectorResource(id = R.drawable.ic_pin_24), | ||
contentDescription = null, | ||
modifier = Modifier.size(20.dp) | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P2: tint 색상이 있으니 적용해주세요!
Related issue 🛠
Work Description ✏️
Screenshot 📸
To Reviewers 📢
항상 좋은 리뷰 감사합니다 :)