Trying my chance here, in #swiftUI what is the best way to have pull to refresh interaction that you can start programmaticaly (like `beginRefreshing()` of `UIRefreshControl`) and you can replace the default `UIActivityControl` by any custom animation ?
I've tried various way, SwiftUIIntrospect or using a classic `UIScrollView` but can't seems to find a proper solution...
ProgressView | Apple Developer Documentation

A view that shows the progress toward completion of a task.

Apple Developer Documentation
@JTostitos `refreshable` give me the pull to refresh interaction but it doesn’t seems that I can start it manually with its visible indicator.
And `ProgressView` only give me the indicator. I don’t see how I can make myself a proper pull to refresh interaction and display it when needed