Added logic for Searching through available medias and basic ui

This commit is contained in:
2026-03-26 22:22:56 +01:00
parent f91c2f88a1
commit 9eccf859bc
7 changed files with 220 additions and 19 deletions

View File

@@ -20,7 +20,7 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp
import androidx.hilt.navigation.compose.hiltViewModel
import androidx.lifecycle.compose.LifecycleResumeEffect
import hu.bbara.purefin.feature.shared.home.HomePageViewModel
import hu.bbara.purefin.feature.shared.home.AppViewModel
import hu.bbara.purefin.tv.home.ui.TvHomeContent
import hu.bbara.purefin.tv.home.ui.TvHomeDrawerContent
import hu.bbara.purefin.tv.home.ui.TvHomeMockData
@@ -31,7 +31,7 @@ import org.jellyfin.sdk.model.api.CollectionType
@Composable
fun TvHomePage(
viewModel: HomePageViewModel = hiltViewModel(),
viewModel: AppViewModel = hiltViewModel(),
modifier: Modifier = Modifier
) {
val drawerState = rememberDrawerState(DrawerValue.Closed)