Skip to content

Commit

Permalink
Hide keyboard on navigating back. (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksharma-xyz authored Oct 9, 2024
1 parent 293b7f0 commit c520eb3
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ fun SearchStopScreen(
stopId = stop.stopId,
stopName = stop.stopName,
transportModeSet = stop.transportModeType.toImmutableSet(),
onClick = { stopItem -> onStopSelected(stopItem) },
onClick = { stopItem ->
keyboard?.hide()
onStopSelected(stopItem)
},
)

Divider()
Expand Down

0 comments on commit c520eb3

Please sign in to comment.