We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that for CollectionBatchUpdatesAnimator and for similar classes init-method was missed. Can you add it on next update?)
CollectionBatchUpdatesAnimator
public class CollectionBatchUpdatesAnimator: Animator<UICollectionView> { public override func perform(in collection: UICollectionView, animated: Bool, operation: () -> Void) { if animated { collection.performBatchUpdates(operation) } else { operation() } } }
The text was updated successfully, but these errors were encountered:
Thank you for your request. We can add init but this animators was not designed to use without rddm.
init
Could you describe a scenario where you need to use this animator manually? Maybe we could suggest you better solution.
Sorry, something went wrong.
chausovSurfStudio
No branches or pull requests
It seems that for
CollectionBatchUpdatesAnimator
and for similar classes init-method was missed. Can you add it on next update?)The text was updated successfully, but these errors were encountered: