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/#48] 온보딩 뷰 / UI 구현 #70

Merged
merged 32 commits into from
Jul 13, 2024
Merged

Conversation

leeeyubin
Copy link
Member

@leeeyubin leeeyubin commented Jul 13, 2024

⛳️ Work Description

  • 필터링 시작 UI 구현
  • 애니메이션 구현
  • 필터링 UI 구현
  • 라디오 버튼 구현
  • 데이트피커 구현
  • Image 컴포넌트 추가
  • button3_a 타이포 추가

📸 Screenshot

Screen_Recording_20240713_093501_Terning-Android.mp4

📢 To Reviewers

  • 온보딩 뷰가 생각보다 작성할 게 많아서 추가된 코드가 많습니당 ㅎ,,ㅎ
  • 그리고 Image 컴포넌트 작성했는데 앞으로 Image에 이미지만 넣고 싶으면 요거 사용해주면 될 듯요!!

@leeeyubin leeeyubin added the UI 💐 UI 작업 label Jul 13, 2024
@leeeyubin leeeyubin added the 유빈💙 유빈 label Jul 13, 2024
@leeeyubin leeeyubin added this to the 1차 스프린트 UI 작업 milestone Jul 13, 2024
@leeeyubin leeeyubin self-assigned this Jul 13, 2024
@boiledEgg-s boiledEgg-s self-requested a review July 13, 2024 05:04
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.

진짜 너무 고생 많으셨어요😢 화면 코드 다 엄청납니다!!
이게 리드지~

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
Member Author

Choose a reason for hiding this comment

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

인정하는 부분임다,, 리팩 때 야무지게 해보아요!

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.

유비니 최~~~~고!!!! 진짜 수고했어요❤️❤️❤️❤️❤️❤️

@@ -22,7 +22,7 @@ class MainNavigator(
@Composable get() = navController
.currentBackStackEntryAsState().value?.destination

val startDestination = SignIn
val startDestination = StartFiltering
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

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

유빈이가 최고야,,,,,,,,,,

Comment on lines 33 to 37
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 =
Copy link
Contributor

Choose a reason for hiding this comment

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

상수화 최고당 !!!!!!

Comment on lines 38 to 39
(listOf("") + (1..12).map { it.toString() } + listOf("") + listOf("")).toImmutableList()

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 Author

Choose a reason for hiding this comment

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

했어야 합니다..! ㅋㅋㅋ 반영완료~!!

Comment on lines +32 to +33
val isButtonValid = remember { mutableStateOf(false) }

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 Author

Choose a reason for hiding this comment

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

뷰모델로 빼보려고 했는데 그 상태를 잘 기억하지 못하는 것 같아서,, 이건 다시 시도해볼게요!!

Comment on lines +47 to +58
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
Copy link
Contributor

Choose a reason for hiding this comment

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

최고다 ㅜ

@leeeyubin leeeyubin merged commit abe284e into develop Jul 13, 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] 온보딩 뷰 / UI 구현
4 participants