-
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/#48] 온보딩 뷰 / UI 구현 #70
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.
이런 라디오버튼들도 재활용한다면 좋을 것 같네요,,,
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.
유비니 최~~~~고!!!! 진짜 수고했어요❤️❤️❤️❤️❤️❤️
@@ -22,7 +22,7 @@ class MainNavigator( | |||
@Composable get() = navController | |||
.currentBackStackEntryAsState().value?.destination | |||
|
|||
val startDestination = SignIn | |||
val startDestination = StartFiltering |
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.
유빈이가 최고야,,,,,,,,,,
private const val START_YEAR = 2023 | ||
private const val END_YEAR = 2025 | ||
private val years = | ||
(listOf("") + (START_YEAR..END_YEAR).map { it.toString() } + listOf("") + listOf("")).toImmutableList() | ||
private val monthsNumber = |
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.
상수화 최고당 !!!!!!
(listOf("") + (1..12).map { it.toString() } + listOf("") + listOf("")).toImmutableList() | ||
|
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.
했어야 합니다..! ㅋㅋㅋ 반영완료~!!
val isButtonValid = remember { mutableStateOf(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.
요거 뷰모델로 안 뺸 이유가 있나영?
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.
뷰모델로 빼보려고 했는데 그 상태를 잘 기억하지 못하는 것 같아서,, 이건 다시 시도해볼게요!!
FilteringButton( | ||
isSelected = selectedButton[index], | ||
modifier = modifier.fillMaxWidth(), | ||
text = if (selectedButton[index]) selectedOptions[index] else option, | ||
onButtonClick = { | ||
selectedIndex.intValue = option | ||
selectedButton.indices.forEach { i -> selectedButton[i] = false } | ||
selectedButton[index] = true | ||
onButtonClick(index) | ||
}, | ||
cornerRadius = 15.dp, | ||
paddingVertical = 15.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.
최고다 ㅜ
into ui/#48-on-boarding-filtering
⛳️ Work Description
📸 Screenshot
Screen_Recording_20240713_093501_Terning-Android.mp4
📢 To Reviewers