Skip to content
This repository has been archived by the owner on Dec 27, 2024. It is now read-only.

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,6 @@ inline fun ConstraintLayout(
}
}
}
@OptIn(ExperimentalMotionApi::class)
MotionLayout(
start = startConstraint,
end = endConstraint,
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
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