Skip to content

Commit

Permalink
Fixed the issue of displaying a small white line on the edge of the f…
Browse files Browse the repository at this point in the history
…ragment during animations.
  • Loading branch information
6eero committed Apr 6, 2024
1 parent e00069c commit b966433
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/main/res/anim/enter_left_to_right.xml
@@ -1,6 +1,6 @@
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:fromXDelta="-100%"
android:fromXDelta="-95%"
android:toXDelta="0%"
android:duration="120"/>
</set>
2 changes: 1 addition & 1 deletion app/src/main/res/anim/enter_right_to_left.xml
@@ -1,6 +1,6 @@
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:fromXDelta="100%"
android:fromXDelta="95%"
android:toXDelta="0%"
android:duration="120"/>
</set>

0 comments on commit b966433

Please sign in to comment.