Skip to content

Instantly share code, notes, and snippets.

@yashwantGowla
Created March 18, 2021 08:55
Show Gist options
  • Save yashwantGowla/6c24ce3148d634994292767794b26afc to your computer and use it in GitHub Desktop.
Save yashwantGowla/6c24ce3148d634994292767794b26afc 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:motion="http://schemas.android.com/apk/res-auto">
<Transition
motion:constraintSetEnd="@+id/end"
motion:constraintSetStart="@id/start"
motion:duration="30000"
motion:autoTransition="animateToEnd">
<KeyFrameSet>
<KeyCycle
motion:motionTarget="@+id/imageViewLogo"
motion:framePosition="0"
motion:wavePeriod="1"
motion:waveShape="sawtooth"
android:rotation="180"
motion:waveOffset="0" />
</KeyFrameSet>
</Transition>
<ConstraintSet android:id="@+id/start">
</ConstraintSet>
<ConstraintSet android:id="@+id/end">
</ConstraintSet>
</MotionScene>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment