Skip to content

Commit 47326fd

Browse files
committed
showcase commit21
1 parent 947f861 commit 47326fd

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

hearo/hearo/Sources/Presentations/Finish/View/FinishView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ struct FinishView: View {
3838

3939
Spacer().frame(height: 72)
4040

41-
LottieView(animationName: "check", animationScale: 1, loopMode: .loop)
41+
LottieView(animationName: "check", animationScale: 1, loopMode: .playOnce)
4242
.frame(width: 200, height: 200)
4343
// .scaleEffect(0.8)
4444
.offset(y: 0)

hearo/hearo/Sources/Presentations/Finish/ViewModel/FinishViewModel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class FinishViewModel: ObservableObject {
1818

1919
private func goToHomeWithDelay() {
2020

21-
DispatchQueue.main.asyncAfter(deadline: .now() + 2) { [weak self] in
21+
DispatchQueue.main.asyncAfter(deadline: .now() + 1.5) { [weak self] in
2222
triggerSuccessHaptic()
2323
self?.appRootManager.currentRoot = .home
2424
}

hearo/hearo/Sources/Presentations/Home/View/HomeView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ struct HomeView: View {
9999
// 화면 전환 딜레이 추가
100100
DispatchQueue.main.asyncAfter(deadline: .now() + transitionDelay) {
101101
withAnimation(.easeIn(duration: 1.5)) {
102-
backgroundOpacity = 0.5
102+
backgroundOpacity = 1.0
103103
}
104104
DispatchQueue.main.asyncAfter(deadline: .now() + 1.0) {
105105
viewModel.startWorking()

0 commit comments

Comments
 (0)