Merge branch 'ipad-support-1' into voice-calls-2

This commit is contained in:
Ryan Zhao 2022-03-11 13:26:18 +11:00
commit 8a186d08b8
1 changed files with 2 additions and 0 deletions

View File

@ -275,6 +275,7 @@ private final class EnterURLVC : UIViewController, UIGestureRecognizerDelegate,
UIView.animate(withDuration: 0.25) {
self.view.layoutIfNeeded()
self.suggestionGridStackView.isHidden = true
self.suggestionGridStackView.alpha = 0
}
}
@ -285,6 +286,7 @@ private final class EnterURLVC : UIViewController, UIGestureRecognizerDelegate,
UIView.animate(withDuration: 0.25) {
self.view.layoutIfNeeded()
self.suggestionGridStackView.isHidden = false
self.suggestionGridStackView.alpha = 1
}
}
}