Skip to content

Commit

Permalink
Remove Navigation transition
Browse files Browse the repository at this point in the history
  • Loading branch information
Pluu committed Sep 25, 2023
1 parent fa2763e commit 26b017f
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.pluu.webtoon.main.container.ui

import androidx.compose.animation.EnterTransition
import androidx.compose.animation.ExitTransition
import androidx.compose.material3.MaterialTheme
import androidx.compose.runtime.Composable
import androidx.compose.runtime.DisposableEffect
Expand Down Expand Up @@ -47,7 +49,13 @@ internal fun AppNavigation(
NavHost(
navController = navController,
startDestination = Screen.Weekly.route,
modifier = modifier
modifier = modifier,
enterTransition = {
EnterTransition.None
},
exitTransition = {
ExitTransition.None
}
) {
installWeeklyScreen(navController, naviItem, updateNaviItem)
installEpisodeScreen(navController)
Expand Down

0 comments on commit 26b017f

Please # to comment.