From efa14a307172dbc82a12f14847f4aefa6496f14b Mon Sep 17 00:00:00 2001 From: anlicheng <244108715@qq.com> Date: Mon, 19 Jan 2026 12:14:21 +0800 Subject: [PATCH] fix --- punchnet/Views/Settings/SettingsView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/punchnet/Views/Settings/SettingsView.swift b/punchnet/Views/Settings/SettingsView.swift index 4b9a48d..8d7433f 100644 --- a/punchnet/Views/Settings/SettingsView.swift +++ b/punchnet/Views/Settings/SettingsView.swift @@ -23,7 +23,7 @@ struct SettingsView: View { .border(Color.red) } detail: { - Group { + VStack(alignment: .leading, spacing: 0) { switch self.state.currentMeun { case .accout: SettingsAccountView(state: self.state) @@ -36,6 +36,7 @@ struct SettingsView: View { case .about: SettingsAboutView() } + Spacer() } .padding() .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading)