BouncyLayout
BouncyLayout copied to clipboard
Layout does not maintain cell rotation.
I have a view that has rotated cells, simulating cards played out. the cells are rotated randomly:
if rotateCells {
let randomInt = Int.random(in: -17..<18)
cell.rotate(degrees: CGFloat(randomInt))
}
When adding BouncyLayout - the cells don't maintain their rotation. I believe this is a bug...