Add vertical space between Home section header and rows on tvOS

This commit is contained in:
Arkadiusz Fal
2026-04-14 02:37:46 +02:00
parent 39a04ba7a4
commit d111f93462

View File

@@ -218,7 +218,11 @@ struct HomeView: View {
.buttonStyle(.plain)
.padding(.horizontal, listStyle == .inset ? 32 : 16)
.padding(.top, 16)
#if os(tvOS)
.padding(.bottom, 24)
#else
.padding(.bottom, 8)
#endif
.frame(maxWidth: .infinity, alignment: .leading)
}