mirror of
https://github.com/pawelorzech/MacTorn.git
synced 2026-01-30 04:04:27 +00:00
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:
parent
7c4059e59a
commit
f9a2b63ab4
1 changed files with 1 additions and 3 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue