Skip to content

[UI/#37] 상세페이지 화면 구현 #43

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

Merged
merged 47 commits into from
Jan 19, 2025
Merged

Conversation

jangsjw
Copy link
Member

@jangsjw jangsjw commented Jan 17, 2025

Related issue 🛠

Work Description ✏️

  • 상세페이지 화면 구현

Screenshot 📸

  1. 상세페이지 (팔아요)
KakaoTalk_20250117_234649909.mp4
  1. 상세페이지 (구해요)
KakaoTalk_20250117_234649866.mp4

To Reviewers 📢

상세페이지 만들어봤습니다!

@jangsjw jangsjw requested a review from yeonjeen January 19, 2025 12:17
Copy link
Contributor

@chrin05 chrin05 left a comment

Choose a reason for hiding this comment

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

너무 잘하시네요! 고생하셨습니다

textColor: Color,
textStyle: TextStyle,
shape: Shape,
modifier: Modifier = Modifier
Copy link
Contributor

Choose a reason for hiding this comment

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

p1: 콤마 ~ 마지막으로 전체 한 번 확인해주세용

Comment on lines 61 to 73
Row(verticalAlignment = Alignment.CenterVertically) {
Icon(
imageVector = icon,
contentDescription = null,
tint = Color.Unspecified,
modifier = Modifier.size(18.dp),
)
Spacer(modifier = Modifier.width(8.dp))
Text(
text = message,
style = textStyle,
color = textColor,
)
Copy link
Contributor

Choose a reason for hiding this comment

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

CommonSnackbar라면 디자인시스템대로 아이콘이 있는 경우, 없는 경우 고려해서 고쳐주시면 좋을 것 같아요~

Copy link
Member Author

Choose a reason for hiding this comment

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

완룡

val tradeStatus: String = "",
val productPhotoUrls: List<String> = emptyList(),
val marketInfo: MarketInfoUiState = MarketInfoUiState(),
val marketReviews: List<MarketReviewUiState> = emptyList(),
Copy link
Contributor

@jm991014 jm991014 Jan 19, 2025

Choose a reason for hiding this comment

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

p2: @immutable 붙여도 좋을 것 같아요~

Comment on lines 3 to 19
enum class ProductCondition(val label: String) {
BRAND_NEW("미개봉"),
SLIGHTLY_USED("약간의 사용감"),
USED("사용감 있음"),
LIGHTLY_USED("약간 사용감 있음");

companion object {
fun fromCondition(condition: String?): ProductCondition {
return when (condition) {
BRAND_NEW.label -> BRAND_NEW
SLIGHTLY_USED.label -> SLIGHTLY_USED
USED.label -> USED
LIGHTLY_USED.label -> LIGHTLY_USED
else -> BRAND_NEW
}
}
}
Copy link
Contributor

@jm991014 jm991014 Jan 19, 2025

Choose a reason for hiding this comment

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

p1: 수정하고 추후 공통 type으로 이동시킵시다

itemChatGraph(
modifier = Modifier.systemBarsPadding(),
onNavigateUp = navigator.navController::navigateUp,
)
}
}
Copy link
Contributor

Choose a reason for hiding this comment

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

p1: 개행이용 ㅋ

Copy link
Contributor

@yeonjeen yeonjeen left a comment

Choose a reason for hiding this comment

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

리뷰 반영하느라 수고 많으셨습니당!! 피알마다 느끼는 거지만 성장속도 무엇..

Copy link
Collaborator

@boiledeggg boiledeggg left a comment

Choose a reason for hiding this comment

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

잡채 완벽!

@jangsjw jangsjw merged commit be8137e into develop Jan 19, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[UI] 상세페이지 화면 구현
5 participants