-
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/#11] 탐색 뷰 / 탐색 기본 화면 구현 #30
Conversation
# Conflicts: # feature/src/main/java/com/terning/feature/search/SearchRoute.kt
# Conflicts: # feature/src/main/java/com/terning/feature/main/MainNavigator.kt
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.
너무 잘하시네요,,, 이대로 킵고잉~
) | ||
|
||
SearchInternList(type = "view") |
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.
"view"와 "scrap"이 화면에 표시할 인턴 공고 타입을 나타내는 문자열 같은데 이건 enum과 같은 것으로 카테고리화하는게 좋아보이네요!!
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.
꺅!!!!!!!섬세하시다. 적용킵고잉하겠습니다
LaunchedEffect(Unit) { | ||
while (true) { | ||
delay(3000) | ||
val nextPage = (pagerState.currentPage + 1) % pagerState.pageCount | ||
pagerState.scrollToPage(nextPage) | ||
} | ||
} |
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.
기디에서 3초마다 넘어가게 해달라고 하셔서 반영했습니당....... 🫶🏻
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.
와 벌써 탐색뷰 pr이?!??!?!!? 역시 천재개발자...⭐ 전체적으로 패딩 값만 다시 한번 확인해보면 좋을 것 같아요! 특히 전체 horizontal padding이 24.dp인데 요게 적용된건지 잘 모르겠어가지고🥹 한번만 확인해주세요...!! 수고하셨습니당~!!
|
||
Text( | ||
text = stringResource(id = R.string.search_today_popular), | ||
modifier = Modifier.padding(horizontal = 16.dp, vertical = 4.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.
여기 padding horizontal = 24.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.
전체 패딩값이 24.dp 였군요 ㅠ ㅠ 당장 수정할게욥
LaunchedEffect(Unit) { | ||
while (true) { | ||
delay(3000) | ||
val nextPage = (pagerState.currentPage + 1) % pagerState.pageCount | ||
pagerState.scrollToPage(nextPage) | ||
} | ||
} |
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.
천재만재 개발자 아린언니 ㄷㄷ
fun SearchTextField( | ||
text: String, | ||
onValueChange: (String) -> Unit, | ||
readOnly: Boolean = false, | ||
hint: String, | ||
leftIcon: Int, |
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.
요거 readOnly를 젤 아래로 내려줘야 할 것 같아용
contentDescription = null, | ||
modifier = modifier | ||
.fillMaxWidth() | ||
.height(112.dp) | ||
.padding(16.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.
넵 !!!
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.
시작 루트만 다시 SignIn으로 바꿔주고 머지해주면 될 것 같아용
# Conflicts: # core/src/main/java/com/terning/core/designsystem/component/topappbar/TerningBasicTopAppBar.kt
⛳️ Work Description
📸 Screenshot
11.mp4
📢 To Reviewers