Coverage Summary for Class: SplashNavigationKt (com.codandotv.streamplayerapp.presentation.navigation)

Class Method, % Branch, % Line, % Instruction, %
SplashNavigationKt 0% (0/1) 0% (0/1) 0% (0/19)
SplashNavigationKt$splashNavGraph$1 0% (0/4) 0% (0/6) 0% (0/46)
Total 0% (0/5) 0% (0/7) 0% (0/65)


 package com.codandotv.streamplayerapp.presentation.navigation
 
 import androidx.navigation.NavGraphBuilder
 import androidx.navigation.NavHostController
 import androidx.navigation.compose.composable
 import com.codandotv.streamplayerapp.core_navigation.routes.BottomNavRoutes
 import com.codandotv.streamplayerapp.core_navigation.routes.Routes
 import com.codandotv.streamplayerapp.presentation.screens.SplashScreen
 
 fun NavGraphBuilder.splashNavGraph(navController: NavHostController) {
     composable(Routes.Splash) {
         SplashScreen(
             onAnimationFinished = {
                 navController.navigate(BottomNavRoutes.HOME) {
                     popUpTo(Routes.Splash) {
                         inclusive = true
                     }
                     launchSingleTop = true
                 }
             }
         )
     }
 }