-
Notifications
You must be signed in to change notification settings - Fork 1
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
[UI/#52] 홈 뷰 / 컴포넌트 적용 #56
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.
복잡한 홈 뷰 고생 많으셨어요 ,,,,ㅜ ㅜ
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.
진짜 너무 고생 많으셨어요!! 이제 서버통신 드갑시당~~
modifier | ||
.background(White) | ||
.width(140.dp) | ||
ScrapBox( |
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.
뿌듯하네요ㅎㅎ
items(itemCount) { | ||
Box( | ||
modifier = modifier | ||
.height(92.dp) | ||
.padding(horizontal = 24.dp) | ||
.customShadow( | ||
color = Grey200, | ||
shadowRadius = 10.dp, | ||
shadowWidth = 2.dp | ||
) | ||
.background( | ||
color = White, | ||
shape = RoundedCornerShape(10.dp) | ||
) | ||
) { | ||
InternItem( | ||
imageUrl = "https://reqres.in/img/faces/7-image.jpg", | ||
title = "[Someone] 콘텐츠 마케터 대학생 인턴 채용", | ||
dateDeadline = "2", | ||
workingPeriod = "2", | ||
isScraped = false, | ||
) | ||
} |
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.
이 부분을 특별히 Box로 감싸신 이유가 있나요??
혹시 커스텀 섀도우가 적용되지 않아서 그런거라면 InternItem 로직을 수정하면 됩니다!!
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.
커스텀 섀도우가 적용했더니 외곽부분 뿐만 아니라 InternItem 안에 있는 Text나 이미지에도 섀도우가 적용이 돼서 Box로 감싸고 거기에 섀도우를 적용해서 InternItem 내부에는 섀도우가 적용되지 않도록 했습니다..!!
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.
효빈언니 최~~고!!!!!
items(itemCount) { | ||
Box( | ||
modifier = modifier | ||
.height(92.dp) | ||
.padding(horizontal = 24.dp) | ||
.customShadow( | ||
color = Grey200, |
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.
92...!!!!! 지양해주세요!!!
.height(116.dp) | ||
.border( | ||
width = 1.dp, | ||
color = Grey150, | ||
RoundedCornerShape(5.dp), | ||
), | ||
verticalAlignment = Alignment.Bottom | ||
) { | ||
Box( | ||
modifier | ||
.background( | ||
color = Grey500, | ||
shape = RoundedCornerShape( | ||
topStart = 5.dp, | ||
bottomStart = 5.dp | ||
) | ||
.width(140.dp), | ||
cornerRadius = 5.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.
여긴,,,어디져,,??!!
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 = title, | ||
modifier = modifier | ||
.padding(start = 8.dp, end = 9.dp, bottom = 8.dp), | ||
style = TerningTheme.typography.button3, | ||
color = Black, |
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.
줄바꿈 해주면 더 좋을 것 가타요!!
고정 dp 준거는 내부 컴포넌트 수정이 필요해서 컴포넌트 머지한 후에 수정하도록 하겠습니다!! |
⛳️ Work Description
📸 Screenshot
Screen_Recording_20240712_063425_Terning-Android.mp4
📢 To Reviewers