Skip to content

Commit

Permalink
fix : 딜레이 조정 1.0 -> 0.2초
Browse files Browse the repository at this point in the history
  • Loading branch information
HamBP committed Nov 20, 2024
1 parent cbeb16c commit fd9e608
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ fun ShowDetailScreen(
val showState by flow {
while (true) {
emit(uiState.showDetail.state)
delay(1000)
delay(200)
}
}.collectAsStateWithLifecycle(uiState.showDetail.state)
val isLoggedIn by viewModel.loggedIn.collectAsStateWithLifecycle()
Expand Down Expand Up @@ -824,7 +824,7 @@ private fun CountDownBanner(
)
emit(maxOf(duration, Duration.ZERO))
if (duration <= Duration.ZERO) break
delay(1000L)
delay(200L)
}
}.collectAsStateWithLifecycle(Duration.ZERO)

Expand Down

0 comments on commit fd9e608

Please sign in to comment.