Skip to content
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

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from

Conversation

angryPodo
Copy link
Collaborator

Related issue 🛠

Work Description ✏️

  • 검색 결과를 보여주는 컴포넌트입니다.

Screenshot 📸

image

To Reviewers 📢

항상 좋은 리뷰 감사합니다 :)

@angryPodo angryPodo added 💙민재💙 💙민재💙 FEAT✨ 새로운 기능 구현 labels Jan 17, 2025
@angryPodo angryPodo self-assigned this Jan 17, 2025
@angryPodo angryPodo requested a review from a team as a code owner January 17, 2025 18:11
@angryPodo angryPodo linked an issue Jan 17, 2025 that may be closed by this pull request
1 task
Copy link
Member

@chattymin chattymin left a 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 }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

p4) 불필요한 람다를 생성하지 않고 바로 사용해주세요~

Suggested change
.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 }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

p4) 여기도!

Copy link
Collaborator

@Hyobeen-Park Hyobeen-Park left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨습니다!! 텍스트 설정만 바꿔주세요~~!!

Comment on lines +63 to +68
Text(
text = placeName,
style = SpoonyAndroidTheme.typography.body2b,
color = SpoonyAndroidTheme.colors.black,
maxLines = 1
)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: 여기도 overflow 설정해주세요!!

Copy link
Member

@Roel4990 Roel4990 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨습니다!

Comment on lines +56 to +60
Icon(
imageVector = ImageVector.vectorResource(id = R.drawable.ic_pin_24),
contentDescription = null,
modifier = Modifier.size(20.dp)
)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: tint 색상이 있으니 적용해주세요!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FEAT✨ 새로운 기능 구현 💙민재💙 💙민재💙
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEAT] 검색결과 컴포넌트 구현
4 participants