Skip to content

Commit

Permalink
feat/#388 꾸물거릴 시간이 없어요 팝업 도착 완료 시 숨겨지도록 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
youz2me committed Sep 20, 2024
1 parent 700f1e7 commit 9840949
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,15 @@ extension ReadyStatusViewController {
$0.statusProgressView.setProgress(1, animated: false)
}
}

owner.rootView.popUpImageView.do {
switch state {
case .none, .ready, .move:
$0.isHidden = false
case .done:
$0.isHidden = true
}
}
}

viewModel.requestReadyTime.bindOnMain(with: self) { owner, time in
Expand Down

0 comments on commit 9840949

Please sign in to comment.