You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the root view is not a CoordinatorLayout the animation of attached views is not synchronized with the SnackProgressBarLayout animation. .setViewsToMove(new View[]{ viewBinding.fab, })
how to remove animation delay of attached views?
The text was updated successfully, but these errors were encountered:
Thanks for the good catch. This was due to the BaseTransientBottomBar using FastOutSlowInInterpolator which was not applied to viewsToMove. See commit 922c1eb. Try implementation 'com.github.tingyik90:snackprogressbar:master-SNAPSHOT' and let me know if this solves the animation issue.
I've tested it on an emulator and slowed the animation duration by 10x and it matches.
When the root view is not a CoordinatorLayout the animation of attached views is not synchronized with the SnackProgressBarLayout animation.
.setViewsToMove(new View[]{ viewBinding.fab, })
how to remove animation delay of attached views?
The text was updated successfully, but these errors were encountered: