From 80a85ebe76c9951ba2169e65091401f4ef4d9f3f Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Tue, 8 Apr 2025 16:12:52 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A9=94=EB=89=B4=ED=8C=90=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20-=20=EB=B0=B0=EA=B2=BD=20=ED=84=B0=EC=B9=98?= =?UTF-8?q?=EC=8B=9C=20=ED=82=A4=EB=B3=B4=EB=93=9C=EA=B0=80=20=EC=88=A8?= =?UTF-8?q?=EA=B2=A8=EC=A7=80=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Live/Room/Menu/MenuSettingsView.swift | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/SodaLive/Sources/Live/Room/Menu/MenuSettingsView.swift b/SodaLive/Sources/Live/Room/Menu/MenuSettingsView.swift index 885daaf..34bc04e 100644 --- a/SodaLive/Sources/Live/Room/Menu/MenuSettingsView.swift +++ b/SodaLive/Sources/Live/Room/Menu/MenuSettingsView.swift @@ -56,7 +56,7 @@ struct MenuSettingsView: View { textColorHex: "eeeeee", backgroundColorHex: "303030" ) - .frame(height: 350) + .frame(height: 300) .cornerRadius(6.7) .padding(.horizontal, 13.3) @@ -73,11 +73,15 @@ struct MenuSettingsView: View { Spacer() } + .edgesIgnoringSafeArea(.bottom) .onAppear { viewModel.getAllMenuPreset { self.isShowing = false } } + .onTapGesture { + hideKeyboard() + } .popup(isPresented: $viewModel.isShowPopup, type: .toast, position: .bottom, autohideIn: 2) { HStack { Spacer()