Use fullScreenCover for Settings and Accounts on tvOS

- Replace sheet presentation with fullScreenCover for Settings and Accounts views on tvOS
- Add proper background color to Settings and Accounts screens on tvOS
- Clean up trailing whitespace in HomeView

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Arkadiusz Fal
2025-11-09 16:36:28 +01:00
parent e0ca48fd44
commit 4840c9a05f
4 changed files with 20 additions and 1 deletions

View File

@@ -134,6 +134,9 @@ struct SettingsView: View {
settingsList
.navigationTitle("Settings")
}
#if os(tvOS)
.background(Color.background(scheme: colorScheme).ignoresSafeArea())
#endif
#endif
}