fix: Resolve Credits view height being cut off in MenuBarExtra

- Remove Spacer() that was compressing ScrollView
- Set fixed height (480) to ensure all sections are visible
This commit is contained in:
Paweł Orzech 2026-01-18 21:43:44 +00:00
parent 7c4059e59a
commit f9a2b63ab4
No known key found for this signature in database

View file

@ -63,8 +63,6 @@ struct CreditsView: View {
.padding(.horizontal) .padding(.horizontal)
} }
Spacer()
// Back Button // Back Button
Button { Button {
showCredits = false showCredits = false
@ -79,7 +77,7 @@ struct CreditsView: View {
.foregroundColor(.accentColor) .foregroundColor(.accentColor)
} }
.padding() .padding()
.frame(width: 320) .frame(width: 320, height: 480)
} }
// MARK: - Developer Section // MARK: - Developer Section