paololeonardi / WaterfallGrid

A waterfall grid layout view for SwiftUI.
MIT License
2.39k stars 117 forks source link

Deleting items, with animation #43

Closed andrewlilley-ux closed 3 years ago

andrewlilley-ux commented 4 years ago

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

paololeonardi commented 3 years ago

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
andrewlilley-ux commented 3 years ago

Yeah, thanks.