Target is a modification with the following behavior:
(but only with 2 buttons - 1 on the left side, 1 on the right)
Behavior:
short swipe
Unfortunately there isn't any native SwiftUI solution so far (as of SwiftUI 2 beta).
You can make your custom swipe actions using UIKit and wrap them in UIViewRepresentable.
Some solutions (you may have seen them already):
Or you can just use a library instead (at least until a native solution is developed).
Some libraries:
If you want to implement simultaneous swipe gesture you need to use UIViewRepresentable again:
Summing up