We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfec3c9 commit 09f4eb2Copy full SHA for 09f4eb2
app/src/main/kotlin/nl/ndat/tvlauncher/ui/screen/launcher/LauncherScreen.kt
@@ -1,5 +1,7 @@
1
package nl.ndat.tvlauncher.ui.screen.launcher
2
3
+import androidx.compose.animation.fadeIn
4
+import androidx.compose.animation.fadeOut
5
import androidx.compose.foundation.layout.Box
6
import androidx.compose.foundation.layout.Column
7
import androidx.compose.foundation.layout.fillMaxSize
@@ -36,6 +38,8 @@ fun LauncherScreen() {
36
38
NavHost(
37
39
navController = LocalNavController.current,
40
graph = LocalNavGraph.current,
41
+ enterTransition = { fadeIn() },
42
+ exitTransition = { fadeOut() }
43
)
44
}
45
0 commit comments