File tree Expand file tree Collapse file tree
composeApp/src/commonMain/kotlin/org/whosin/client/presentation/auth Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -161,6 +161,9 @@ fun ClubCodeInputScreen(
161161 focusRequesters[index + 1 ].requestFocus()
162162 keyboardController?.show()
163163 }
164+ else if (input.isNotEmpty() && index == 5 ) {
165+ keyboardController?.hide()
166+ }
164167 // 현재 박스가 비워지고 이전 박스가 있으면 이전으로 이동
165168 else if (input.isEmpty() && index > 0 ) {
166169 currentFocusIndex = index - 1
Original file line number Diff line number Diff line change @@ -134,6 +134,9 @@ fun EmailVerificationScreen(
134134 currentFocusIndex = index + 1
135135 focusRequesters[index + 1 ].requestFocus()
136136 }
137+ else if (input.isNotEmpty() && index == 5 ) {
138+ keyboardController?.hide()
139+ }
137140 // 현재 박스가 비워지고 이전 박스가 있으면 이전으로 이동
138141 else if (input.isEmpty() && index > 0 ) {
139142 currentFocusIndex = index - 1
You can’t perform that action at this time.
0 commit comments