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
is it still not supporting rtl language ?
when making "flipsHorizontallyInOppositeLayoutDirection" true
the animation is very corrupted
is it still not supporting rtl language ?
when making "flipsHorizontallyInOppositeLayoutDirection" true
the animation is very corrupted
I think i figured it out,
if your project is RTL and you are using
extension UICollectionViewFlowLayout { open override var flipsHorizontallyInOppositeLayoutDirection: Bool { return true } }
the solution is to simply return false, but if you still need that peace of code for something else, do this: extension AnimatedCollectionViewLayout { open override var flipsHorizontallyInOppositeLayoutDirection: Bool { return false } }
this is worked for me perfectly 😍
thank you @KelvinJin for this awesome library 🌹❤️
is it still not supporting rtl language ?
when making "flipsHorizontallyInOppositeLayoutDirection" true
the animation is very corrupted
The text was updated successfully, but these errors were encountered: