From 9e84389fb525dd7af4f8cc1c90c94ffe6e89972f Mon Sep 17 00:00:00 2001 From: otoolz Date: Sat, 13 Jan 2024 05:18:02 +0900 Subject: [PATCH] =?UTF-8?q?chore=20#394:=20TLToastView=20Layout=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- iOS/traveline/Sources/DesignSystem/View/TLToastView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iOS/traveline/Sources/DesignSystem/View/TLToastView.swift b/iOS/traveline/Sources/DesignSystem/View/TLToastView.swift index 4eca813..1b5e282 100644 --- a/iOS/traveline/Sources/DesignSystem/View/TLToastView.swift +++ b/iOS/traveline/Sources/DesignSystem/View/TLToastView.swift @@ -65,7 +65,7 @@ final class TLToastView: UIView { translatesAutoresizingMaskIntoConstraints = false alpha = 1.0 NSLayoutConstraint.activate([ - bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: -24), + bottomAnchor.constraint(equalTo: view.keyboardLayoutGuide.topAnchor, constant: -24), leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: Metric.margin), trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: -Metric.margin), heightAnchor.constraint(equalToConstant: Metric.toastHeight)