-
Notifications
You must be signed in to change notification settings - Fork 1
[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
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.
너무 잘하시네요! 고생하셨습니다
textColor: Color, | ||
textStyle: TextStyle, | ||
shape: Shape, | ||
modifier: Modifier = Modifier |
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.
p1: 콤마 ~ 마지막으로 전체 한 번 확인해주세용
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, | ||
) |
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.
CommonSnackbar라면 디자인시스템대로 아이콘이 있는 경우, 없는 경우 고려해서 고쳐주시면 좋을 것 같아요~
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.
완룡
val tradeStatus: String = "", | ||
val productPhotoUrls: List<String> = emptyList(), | ||
val marketInfo: MarketInfoUiState = MarketInfoUiState(), | ||
val marketReviews: List<MarketReviewUiState> = emptyList(), |
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: @immutable 붙여도 좋을 것 같아요~
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 | ||
} | ||
} | ||
} |
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.
p1: 수정하고 추후 공통 type으로 이동시킵시다
itemChatGraph( | ||
modifier = Modifier.systemBarsPadding(), | ||
onNavigateUp = navigator.navController::navigateUp, | ||
) | ||
} | ||
} |
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.
p1: 개행이용 ㅋ
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.
리뷰 반영하느라 수고 많으셨습니당!! 피알마다 느끼는 거지만 성장속도 무엇..
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.
잡채 완벽!
Related issue 🛠
Work Description ✏️
Screenshot 📸
KakaoTalk_20250117_234649909.mp4
KakaoTalk_20250117_234649866.mp4
To Reviewers 📢
상세페이지 만들어봤습니다!