Skip to content

Releases: fornewid/material-motion-compose

1.0.0

24 Mar 17:22
Compare
Choose a tag to compare
1.0.0 Pre-release
Pre-release

Built to work with Jetpack Compose 1.5.0-alpha01

What’s Changed

0.11.1

24 Mar 04:04
Compare
Choose a tag to compare

Built to work with Jetpack Compose BOM 2023.03.00

What’s Changed

  • Updates to Compose BOM 2023.03.00 and Compose Compiler 1.4.4 (#181) @fornewid
  • Updates to Compose 1.4.0-alpha04 and Compose Compiler 1.4.0 (#180) @fornewid

0.10.4

20 Jan 13:03
Compare
Choose a tag to compare

Built to work with Jetpack Compose BOM 2023.01.00

What’s Changed

0.11.0-alpha

30 Oct 10:48
Compare
Choose a tag to compare
0.11.0-alpha Pre-release
Pre-release

Built to work with Jetpack Compose 1.4.0-alpha01

What’s Changed

0.10.3

30 Oct 09:19
Compare
Choose a tag to compare

Built to work with Jetpack Compose 1.3.0

What’s Changed

  • Updates to Compose 1.3.0 and Compose Compiler 1.3.2 (#175) @fornewid
  • Avoid crashing when the start destination changes (#176) @fornewid

0.10.2-beta

30 Oct 09:18
Compare
Choose a tag to compare
0.10.2-beta Pre-release
Pre-release

Built to work with Jetpack Compose 1.3.0-beta01

What’s Changed

0.10.1-alpha

18 Aug 15:06
Compare
Choose a tag to compare
0.10.1-alpha Pre-release
Pre-release

Built to work with Jetpack Compose 1.3.0-alpha03

What’s Changed

  • Updates to Compose 1.3.0-alpha03 and Compose Compiler 1.3.0 (#173) @fornewid
  • Updates to Compose 1.3.0-alpha02 and Compose Compiler 1.3.0-rc01 (#171) @fornewid

0.9.1

18 Aug 14:02
Compare
Choose a tag to compare

Built to work with Jetpack Compose 1.2.1

What’s Changed

0.9.0

28 Jul 13:04
Compare
Choose a tag to compare

Built to work with Jetpack Compose 1.2.0

What’s Changed

0.10.0-alpha

03 Jul 15:51
Compare
Choose a tag to compare
0.10.0-alpha Pre-release
Pre-release

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.

What’s Changed