Hi!
How is possible to configure, the onDelete event in the List?
I would like to made 3 custom button when the User swipe on the List Item.
As the Delete button, just with different design and different actions.
Anyway, possible?
I cant found sample code, or any resource, i checked the List implementation, i have no idea.
How is possible configure the List "onDelete" action / Button?
You'll need to implement your own mechanics on your row views to implement this I'm afraid. On the plus side, it's going to be a lot easier to build it in SwiftUI than it was when we were building it in the Mail app using UIKit…
Hi!
Thank you for the Answer!
Cool, that means, more or less, the Apple re implemented the SpriteKit with less functions, less objects.
Eh, SpriteKit is a different beast entirely, it lives on top of explicit 3D acceleration. SwiftUI builds on top of CoreGraphics for the most part, with a custom GPU-based 2D renderer available upon request (e.g. by calling .drawingGroup()).