-
-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): use forward and backward transition (#540)
- Loading branch information
1 parent
867b9fc
commit 34e6648
Showing
4 changed files
with
224 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
116 changes: 116 additions & 0 deletions
116
app/src/main/java/me/ash/reader/ui/motion/MaterialSharedAxis.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
package me.ash.reader.ui.motion | ||
|
||
/* | ||
* Copyright 2021 SOUP | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import androidx.compose.animation.ContentTransform | ||
import androidx.compose.animation.EnterTransition | ||
import androidx.compose.animation.ExitTransition | ||
import androidx.compose.animation.ExperimentalAnimationApi | ||
import androidx.compose.animation.core.FastOutLinearInEasing | ||
import androidx.compose.animation.core.FastOutSlowInEasing | ||
import androidx.compose.animation.core.LinearOutSlowInEasing | ||
import androidx.compose.animation.core.tween | ||
import androidx.compose.animation.fadeIn | ||
import androidx.compose.animation.fadeOut | ||
import androidx.compose.animation.slideInHorizontally | ||
import androidx.compose.animation.slideOutHorizontally | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.remember | ||
import androidx.compose.ui.platform.LocalDensity | ||
import androidx.compose.ui.unit.Dp | ||
|
||
|
||
/** | ||
* Returns the provided [Dp] as an [Int] value by the [LocalDensity]. | ||
* | ||
* @param slideDistance Value to the slide distance dimension, 30dp by default. | ||
*/ | ||
@Composable | ||
public fun rememberSlideDistance( | ||
slideDistance: Dp = MotionConstants.DefaultSlideDistance, | ||
): Int { | ||
val density = LocalDensity.current | ||
return remember(density, slideDistance) { | ||
with(density) { slideDistance.roundToPx() } | ||
} | ||
} | ||
|
||
private const val ProgressThreshold = 0.35f | ||
|
||
private val Int.ForOutgoing: Int | ||
get() = (this * ProgressThreshold).toInt() | ||
|
||
private val Int.ForIncoming: Int | ||
get() = this - this.ForOutgoing | ||
|
||
/** | ||
* [materialSharedAxisX] allows to switch a layout with shared X-axis transition. | ||
* | ||
*/ | ||
@OptIn(ExperimentalAnimationApi::class) | ||
public fun materialSharedAxisX( | ||
initialOffsetX: (fullWidth: Int) -> Int, | ||
targetOffsetX: (fullWidth: Int) -> Int, | ||
durationMillis: Int = MotionConstants.DefaultMotionDuration, | ||
): ContentTransform = ContentTransform(materialSharedAxisXIn( | ||
initialOffsetX = initialOffsetX, | ||
durationMillis = durationMillis | ||
), materialSharedAxisXOut( | ||
targetOffsetX = targetOffsetX, | ||
durationMillis = durationMillis | ||
)) | ||
|
||
/** | ||
* [materialSharedAxisXIn] allows to switch a layout with shared X-axis enter transition. | ||
*/ | ||
public fun materialSharedAxisXIn( | ||
initialOffsetX: (fullWidth: Int) -> Int, | ||
durationMillis: Int = MotionConstants.DefaultMotionDuration, | ||
): EnterTransition = slideInHorizontally( | ||
animationSpec = tween( | ||
durationMillis = durationMillis, | ||
easing = FastOutSlowInEasing | ||
), | ||
initialOffsetX = initialOffsetX | ||
) + fadeIn( | ||
animationSpec = tween( | ||
durationMillis = durationMillis.ForIncoming, | ||
delayMillis = durationMillis.ForOutgoing, | ||
easing = LinearOutSlowInEasing | ||
) | ||
) | ||
|
||
/** | ||
* [materialSharedAxisXOut] allows to switch a layout with shared X-axis exit transition. | ||
* | ||
*/ | ||
public fun materialSharedAxisXOut( | ||
targetOffsetX: (fullWidth: Int) -> Int, | ||
durationMillis: Int = MotionConstants.DefaultMotionDuration, | ||
): ExitTransition = slideOutHorizontally( | ||
animationSpec = tween( | ||
durationMillis = durationMillis, | ||
easing = FastOutSlowInEasing | ||
), | ||
targetOffsetX = targetOffsetX | ||
) + fadeOut( | ||
animationSpec = tween( | ||
durationMillis = durationMillis.ForOutgoing, | ||
delayMillis = 0, | ||
easing = FastOutLinearInEasing | ||
) | ||
) |
28 changes: 28 additions & 0 deletions
28
app/src/main/java/me/ash/reader/ui/motion/MotionConstants.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package me.ash.reader.ui.motion | ||
|
||
/* | ||
* Copyright 2021 SOUP | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
|
||
import androidx.compose.ui.unit.Dp | ||
import androidx.compose.ui.unit.dp | ||
|
||
public object MotionConstants { | ||
public const val DefaultMotionDuration: Int = 300 | ||
public const val DefaultFadeInDuration: Int = 150 | ||
public const val DefaultFadeOutDuration: Int = 75 | ||
public val DefaultSlideDistance: Dp = 30.dp | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters