safedispatch-mobile/libSafeMobile/src/main/res/anim/slide_in_top.xml
2022-03-14 11:53:00 +02:00

12 lines
332 B
XML

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="600"
android:fromYDelta="-100%"
android:toYDelta="0%" />
<alpha
android:duration="300"
android:fromAlpha="0.0"
android:toAlpha="1.0" />
</set>