Skip to content

Commit

Permalink
소속 검색 후 clear 했을 때 검색 포커스 되도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
jhg3410 committed Nov 26, 2024
1 parent 67852be commit 4658111
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ internal fun AgencySearchBar(
onSearch()
focusManager.clearFocus()
},
onClear = onClear
onClear = {
onClear()
focusRequester.requestFocus()
}
)
Spacer(modifier = Modifier.width(10.dp))
Text(
Expand Down

0 comments on commit 4658111

Please sign in to comment.