@@ -43,8 +43,6 @@ import androidx.compose.animation.core.animateFloat
4343import androidx.compose.animation.core.infiniteRepeatable
4444import androidx.compose.animation.core.rememberInfiniteTransition
4545import androidx.compose.animation.core.tween
46- import androidx.compose.animation.fadeIn
47- import androidx.compose.animation.fadeOut
4846import androidx.compose.animation.slideInHorizontally
4947import androidx.compose.animation.slideOutHorizontally
5048import androidx.compose.foundation.Canvas
@@ -325,25 +323,25 @@ fun Main() {
325323 slideInHorizontally(
326324 initialOffsetX = { it },
327325 animationSpec = tween(durationMillis = 300 )
328- ) + fadeIn(animationSpec = tween(durationMillis = 300 ))
326+ ) // + fadeIn(animationSpec = tween(durationMillis = 300))
329327 },
330328 exitTransition = {
331329 slideOutHorizontally(
332330 targetOffsetX = { - it/ 4 },
333331 animationSpec = tween(durationMillis = 300 )
334- ) + fadeOut(animationSpec = tween(durationMillis = 150 ))
332+ ) // + fadeOut(animationSpec = tween(durationMillis = 150))
335333 },
336334 popEnterTransition = {
337335 slideInHorizontally(
338336 initialOffsetX = { - it/ 4 },
339337 animationSpec = tween(durationMillis = 300 )
340- ) + fadeIn(animationSpec = tween(durationMillis = 300 ))
338+ ) // + fadeIn(animationSpec = tween(durationMillis = 300))
341339 },
342340 popExitTransition = {
343341 slideOutHorizontally(
344342 targetOffsetX = { it },
345343 animationSpec = tween(durationMillis = 300 )
346- ) + fadeOut(animationSpec = tween(durationMillis = 150 ))
344+ ) // + fadeOut(animationSpec = tween(durationMillis = 150))
347345 }
348346 ) {
349347 composable(" settings" ) {
0 commit comments