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

[FEAT/#23] 포커스 여부에 따라 힌트 텍스트 색상 변경 #24

Merged
merged 1 commit into from
Jul 9, 2024

Conversation

arinming
Copy link
Contributor

@arinming arinming commented Jul 9, 2024

⛳️ Work Description

  • 포커스 여부에 따라 힌트 텍스트 색상 변경

📸 Screenshot

23.mp4

📢 To Reviewers

  • 영상에서 두 텍스트 필드에 동시에 입력되는데 이거는 임의로 넣은 코드라.. 신경 안쓰셔도 됩니닷

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

천재개발자 김아린!!! 진짜 멋있어용❤️❤️

@@ -98,7 +111,7 @@ fun TerningBasicTextField(
Text(
text = hint,
style = textStyle,
color = hintColor
color = if (isFocused.value) hintColor else textColor
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 24 to +25

val startDestination = SignIn
val startDestination = Search
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 +67 to +72
keyboardActions = KeyboardActions(
onDone = {
keyboardController?.hide()
focusManager.clearFocus()
}
),
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 +88 to +90
}
.onFocusChanged {
isFocused.value = it.isFocused
Copy link
Member

Choose a reason for hiding this comment

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

오호~ 바로 구현해내는 폼 미쳐따

@arinming arinming merged commit f1ac929 into develop Jul 9, 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] TextField 힌트텍스트 색상 변경
3 participants