Created
July 26, 2020 22:59
-
-
Save rodrigomartind/b382537fa65466fb303ba2477e330b24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 | |
... | |
</Transition> | |
<ConstraintSet android:id="@+id/start"> | |
<Constraint android:id="@+id/cardCenter"> | |
... | |
</Constraint> | |
<Constraint android:id="@+id/cardRight1"> | |
... | |
</Constraint> | |
<Constraint android:id="@+id/cardLeft1"> | |
<Layout | |
android:layout_width="212dp" | |
android:layout_height="135dp" | |
app:layout_constraintCircle="@+id/guide" | |
app:layout_constraintCircleAngle="340" | |
app:layout_constraintCircleRadius="290dp" /> | |
<Transform | |
android:elevation="4dp" | |
android:rotation="70" /> | |
</Constraint> | |
</ConstraintSet> | |
<ConstraintSet android:id="@+id/leftCard"> | |
<Constraint android:id="@+id/cardCenter"> | |
... | |
</Constraint> | |
<Constraint android:id="@+id/cardRight1"> | |
... | |
</Constraint> | |
<Constraint android:id="@+id/cardLeft1"> | |
<Layout | |
android:layout_width="212dp" | |
android:layout_height="135dp" | |
app:layout_constraintCircle="@+id/guide" | |
app:layout_constraintCircleAngle="320" | |
app:layout_constraintCircleRadius="290dp" /> | |
<Transform | |
android:elevation="3dp" | |
android:rotation="50" /> | |
</Constraint> | |
</ConstraintSet> | |
</MotionScene> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment