Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rodrigomartind/fd93209ebc7819848cf379865b00d17d to your computer and use it in GitHub Desktop.
Save rodrigomartind/fd93209ebc7819848cf379865b00d17d to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<MotionScene xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<Transition
app:constraintSetEnd="@+id/secondCard"
app:constraintSetStart="@id/start"
app:duration="1000">
...
</Transition>
<Transition
app:constraintSetEnd="@+id/firstCard"
app:constraintSetStart="@id/start"
app:duration="1000">
...
</Transition>
<Transition
app:constraintSetEnd="@+id/detailCard"
app:constraintSetStart="@id/start"
app:duration="1000">
...
</Transition>
<!-- ================= -->
<ConstraintSet android:id="@+id/start">
...
</ConstraintSet>
<ConstraintSet android:id="@+id/secondCard">
...
</ConstraintSet>
<ConstraintSet android:id="@+id/firstCard">
...
</ConstraintSet>
<ConstraintSet android:id="@+id/detailCard">
...
</ConstraintSet>
</MotionScene>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment