Fix channel display on tvOS - use full screen instead of modal popup

Changed MediaCoordinator routing from .modal to .push for tvOS to match native library behavior. All channels (Xtream VOD, Xtream Series, Live TV, etc.) now display in full-screen grid layout instead of a small centered modal window.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Ashik K 2025-10-17 12:02:14 +02:00
parent 76453fe0ab
commit 54154b032f
1 changed files with 2 additions and 2 deletions

View File

@ -18,9 +18,9 @@ final class MediaCoordinator: NavigationCoordinatable {
@Root @Root
var start = makeStart var start = makeStart
#if os(tvOS) #if os(tvOS)
@Route(.modal) @Route(.push)
var library = makeLibrary var library = makeLibrary
@Route(.modal) @Route(.push)
var liveTV = makeLiveTV var liveTV = makeLiveTV
#else #else
@Route(.push) @Route(.push)