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/#11] 탐색 뷰 / 탐색 기본 화면 구현 #30

Merged
merged 24 commits into from
Jul 10, 2024

Conversation

arinming
Copy link
Contributor

@arinming arinming commented Jul 9, 2024

⛳️ Work Description

  • 광고 컴포넌트 구현
  • 공고 리스트 컴포넌트 구현
  • 탐색 TextField 색상 변경

📸 Screenshot

11.mp4

📢 To Reviewers

  • TextField에 readOnly 속성을 추가하였읍니다.
  • 이미지는 임의로 넣어두었어요~~~~~!!!!!

@arinming arinming added UI 💐 UI 작업 아린💛 아린 labels Jul 9, 2024
@arinming arinming added this to the 1차 스프린트 UI 작업 milestone Jul 9, 2024
@arinming arinming self-assigned this Jul 9, 2024
@arinming arinming linked an issue Jul 9, 2024 that may be closed by this pull request
5 tasks
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.

너무 잘하시네요,,, 이대로 킵고잉~

)

SearchInternList(type = "view")
Copy link
Member

Choose a reason for hiding this comment

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

"view"와 "scrap"이 화면에 표시할 인턴 공고 타입을 나타내는 문자열 같은데 이건 enum과 같은 것으로 카테고리화하는게 좋아보이네요!!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

꺅!!!!!!!섬세하시다. 적용킵고잉하겠습니다

Comment on lines +30 to +36
LaunchedEffect(Unit) {
while (true) {
delay(3000)
val nextPage = (pagerState.currentPage + 1) % pagerState.pageCount
pagerState.scrollToPage(nextPage)
}
}
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

Choose a reason for hiding this comment

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

우왕 자동 스크롤까지 구현하다니!!! 진짜 최고최고

Copy link
Contributor Author

Choose a reason for hiding this comment

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

기디에서 3초마다 넘어가게 해달라고 하셔서 반영했습니당....... 🫶🏻

Copy link
Member

@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.

와 벌써 탐색뷰 pr이?!??!?!!? 역시 천재개발자...⭐ 전체적으로 패딩 값만 다시 한번 확인해보면 좋을 것 같아요! 특히 전체 horizontal padding이 24.dp인데 요게 적용된건지 잘 모르겠어가지고🥹 한번만 확인해주세요...!! 수고하셨습니당~!!


Text(
text = stringResource(id = R.string.search_today_popular),
modifier = Modifier.padding(horizontal = 16.dp, vertical = 4.dp),
Copy link
Member

Choose a reason for hiding this comment

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

여기 padding horizontal = 24.dp 인 것 같아요!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

전체 패딩값이 24.dp 였군요 ㅠ ㅠ 당장 수정할게욥

Comment on lines +30 to +36
LaunchedEffect(Unit) {
while (true) {
delay(3000)
val nextPage = (pagerState.currentPage + 1) % pagerState.pageCount
pagerState.scrollToPage(nextPage)
}
}
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

@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 11 to 16
fun SearchTextField(
text: String,
onValueChange: (String) -> Unit,
readOnly: Boolean = false,
hint: String,
leftIcon: Int,
Copy link
Member

Choose a reason for hiding this comment

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

요거 readOnly를 젤 아래로 내려줘야 할 것 같아용

Comment on lines +58 to +63
contentDescription = null,
modifier = modifier
.fillMaxWidth()
.height(112.dp)
.padding(16.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
Contributor Author

Choose a reason for hiding this comment

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

넵 !!!

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.

시작 루트만 다시 SignIn으로 바꿔주고 머지해주면 될 것 같아용

@arinming arinming merged commit a42f59d into develop Jul 10, 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
Status: Done
Development

Successfully merging this pull request may close these issues.

[UI] 탐색 뷰 / 탐색 기본 화면 구현
4 participants