paololeonardi / WaterfallGrid

A waterfall grid layout view for SwiftUI.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deleting items, with animation

andrewlilley-ux opened this issue · comments

Are there plans to allow for deleting items, with animation?

With grid style, you can pass the animation to use when data change.
The animation applies to the deleted items as well.
Does this answer your question?

WaterfallGrid(rectangles, content: RectangleView.init)
.gridStyle(
  animation: .easeInOut(duration: 0.5)
)

Delete Animation

Yeah, thanks.