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

[UI/#52] 홈 뷰 / 컴포넌트 적용 #56

Merged
merged 8 commits into from
Jul 12, 2024

Conversation

Hyobeen-Park
Copy link
Member

⛳️ Work Description

  • 오늘 마감되는 공고 컴포넌트 적용
  • 공고 정렬 바텀시트 컴포넌트 적용
  • 필터링 공고 컴포넌트 적용

📸 Screenshot

Screen_Recording_20240712_063425_Terning-Android.mp4

📢 To Reviewers

  • UI 진짜 완성(아마도)

Copy link
Contributor

@arinming arinming 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
Contributor

Choose a reason for hiding this comment

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

우왕 여기 엄청 깔끔해진 것 같아여

Copy link
Member

@boiledEgg-s boiledEgg-s left a 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(
Copy link
Member

Choose a reason for hiding this comment

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

뿌듯하네요ㅎㅎ

Comment on lines +154 to +176
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,
)
}
Copy link
Member

Choose a reason for hiding this comment

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

이 부분을 특별히 Box로 감싸신 이유가 있나요??
혹시 커스텀 섀도우가 적용되지 않아서 그런거라면 InternItem 로직을 수정하면 됩니다!!

Copy link
Member Author

Choose a reason for hiding this comment

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

커스텀 섀도우가 적용했더니 외곽부분 뿐만 아니라 InternItem 안에 있는 Text나 이미지에도 섀도우가 적용이 돼서 Box로 감싸고 거기에 섀도우를 적용해서 InternItem 내부에는 섀도우가 적용되지 않도록 했습니다..!!

Copy link
Member

@leeeyubin leeeyubin 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 +154 to +160
items(itemCount) {
Box(
modifier = modifier
.height(92.dp)
.padding(horizontal = 24.dp)
.customShadow(
color = Grey200,
Copy link
Member

Choose a reason for hiding this comment

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

92...!!!!! 지양해주세요!!!

Comment on lines 27 to +29
.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,
Copy link
Member

Choose a reason for hiding this comment

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

여긴,,,어디져,,??!!

Copy link
Member Author

Choose a reason for hiding this comment

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

이거 홈 뷰에서 오늘 마감되는 공고 부분에 사용되는 아이템입니다!!

Comment on lines 40 to 44
text = title,
modifier = modifier
.padding(start = 8.dp, end = 9.dp, bottom = 8.dp),
style = TerningTheme.typography.button3,
color = Black,
Copy link
Member

Choose a reason for hiding this comment

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

줄바꿈 해주면 더 좋을 것 가타요!!

@Hyobeen-Park
Copy link
Member Author

고정 dp 준거는 내부 컴포넌트 수정이 필요해서 컴포넌트 머지한 후에 수정하도록 하겠습니다!!

@Hyobeen-Park Hyobeen-Park merged commit 97777a2 into develop Jul 12, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
UI 💐 UI 작업 효빈💚 효빈
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[UI] 홈 뷰 / 컴포넌트 적용
4 participants