Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove MotionExperimental annotation #483

Merged
merged 1 commit into from Jan 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -248,7 +248,6 @@ inline fun ConstraintLayout(
}
}
}
@OptIn(ExperimentalMotionApi::class)
MotionLayout(
start = startConstraint,
end = endConstraint,
Expand Down

This file was deleted.

Expand Up @@ -57,7 +57,6 @@ import java.util.*
*/
@Suppress("NOTHING_TO_INLINE")
@Composable
@ExperimentalMotionApi
inline fun MotionLayout(
start: ConstraintSet,
end: ConstraintSet,
Expand Down Expand Up @@ -94,7 +93,6 @@ inline fun MotionLayout(
* are finished. Use [finishedAnimationListener] to know when a transition has stopped.
*/
@Composable
@ExperimentalMotionApi
inline fun MotionLayout(
motionScene: MotionScene,
constraintSetName: String? = null,
Expand Down Expand Up @@ -201,7 +199,6 @@ inline fun MotionLayout(
}

@Composable
@ExperimentalMotionApi
inline fun MotionLayout(
start: ConstraintSet,
end: ConstraintSet,
Expand Down Expand Up @@ -264,7 +261,6 @@ inline fun MotionLayout(

@Suppress("NOTHING_TO_INLINE")
@Composable
@ExperimentalMotionApi
inline fun MotionLayout(
motionScene: MotionScene,
progress: Float,
Expand Down