From a7743569092b5288a63bbe91cd13342736cd4a43 Mon Sep 17 00:00:00 2001 From: hyun99999 Date: Wed, 3 May 2023 01:45:19 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=B0=94=ED=85=80=EC=8B=9C=ED=8A=B8=20?= =?UTF-8?q?=EB=82=B4=EB=A0=A4=EA=B0=80=EB=8A=94=20=EC=86=8D=EB=8F=84=20?= =?UTF-8?q?=EC=A1=B0=EC=A0=88=20(#473)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BottomSheet/AddGroupBottomSheetViewController.swift | 2 +- .../BottomSheet/CommonBottomSheetViewController.swift | 2 +- .../BottomSheet/GroupNameEditBottomSheetViewController.swift | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/AddGroupBottomSheetViewController.swift b/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/AddGroupBottomSheetViewController.swift index 83bbc39a..e240be1c 100644 --- a/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/AddGroupBottomSheetViewController.swift +++ b/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/AddGroupBottomSheetViewController.swift @@ -98,7 +98,7 @@ class AddGroupBottomSheetViewController: CommonBottomSheetViewController, UIText let safeAreaHeight = view.safeAreaLayoutGuide.layoutFrame.height let bottomPadding = view.safeAreaInsets.bottom bottomSheetViewTopConstraint?.constant = safeAreaHeight + bottomPadding - UIView.animate(withDuration: 0.2, delay: 0, options: .curveEaseOut, animations: { + UIView.animate(withDuration: 0.5, delay: 0, options: .curveEaseOut, animations: { self.dimmedBackView.alpha = 0.0 self.view.layoutIfNeeded() self.bottomSheetCoverView.isHidden = false diff --git a/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/CommonBottomSheetViewController.swift b/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/CommonBottomSheetViewController.swift index c66871d8..ae551350 100644 --- a/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/CommonBottomSheetViewController.swift +++ b/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/CommonBottomSheetViewController.swift @@ -181,7 +181,7 @@ class CommonBottomSheetViewController: UIViewController { let safeAreaHeight = view.safeAreaLayoutGuide.layoutFrame.height let bottomPadding = view.safeAreaInsets.bottom bottomSheetViewTopConstraint.constant = safeAreaHeight + bottomPadding - UIView.animate(withDuration: 0.2, delay: 0, options: .curveEaseOut, animations: { + UIView.animate(withDuration: 0.5, delay: 0, options: .curveEaseOut, animations: { self.dimmedBackView.alpha = 0.0 self.view.layoutIfNeeded() self.bottomSheetCoverView.isHidden = false diff --git a/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/GroupNameEditBottomSheetViewController.swift b/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/GroupNameEditBottomSheetViewController.swift index 9128d5d0..855ce00a 100644 --- a/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/GroupNameEditBottomSheetViewController.swift +++ b/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/GroupNameEditBottomSheetViewController.swift @@ -71,7 +71,7 @@ class GroupNameEditBottomSheetViewController: CommonBottomSheetViewController, U let safeAreaHeight = view.safeAreaLayoutGuide.layoutFrame.height let bottomPadding = view.safeAreaInsets.bottom bottomSheetViewTopConstraint?.constant = safeAreaHeight + bottomPadding - UIView.animate(withDuration: 0.2, delay: 0, options: .curveEaseOut, animations: { + UIView.animate(withDuration: 0.5, delay: 0, options: .curveEaseOut, animations: { self.dimmedBackView.alpha = 0.0 self.view.layoutIfNeeded() self.bottomSheetCoverView.isHidden = false