Releases: fornewid/material-motion-compose
Releases · fornewid/material-motion-compose
1.0.0
0.11.1
0.10.4
Built to work with Jetpack Compose BOM 2023.01.00
What’s Changed
0.11.0-alpha
Built to work with Jetpack Compose 1.4.0-alpha01
What’s Changed
0.10.3
0.10.2-beta
Built to work with Jetpack Compose 1.3.0-beta01
What’s Changed
0.10.1-alpha
Built to work with Jetpack Compose 1.3.0-alpha03
What’s Changed
0.9.1
0.9.0
0.10.0-alpha
Built to work with Jetpack Compose 1.3.0-alpha01
Key Changes
🌈 [Core] Introduce new circularReveal
modifier in 'core' library!
var visible: Boolean by remember { mutableStateOf(false) }
Box(
modifier = Modifier.circularReveal(
visible = visible,
center = { fullSize ->
Offset(x = 1f * fullSize.width, y = 0f * fullSize.height) // TopRight
},
)
) { ... }
For the full codes, refer to CircularRevealScreen.kt file.
🧭 [Navigation] Easy migration from accompanist-navigation-animation!
With this version, you can easily migrate to this library from accompanist-navigation-animation.
If you are interested, check out the migration guide. 😉
🧭 [Navigation] The 'core' library dependency is no longer needed!
dependencies {
implementation "io.github.fornewid:material-motion-compose-navigation:<version>"
- implementation "io.github.fornewid:material-motion-compose-core:<version>"
}
Breaking Changes
⚠️ MotionSpec
is deprecated and use ContentTransform
instead
If you were already using this library, you must migrate your codes.
Please check out the migration guide.