RefreshUI
RefreshUI copied to clipboard
RefreshUI provide native refresh control to SwiftUI.
Hi, - What is the purpose of tagging, how is it working and why ? - And what is`Token(id: 1)`, it will be always the same... Hope you could clarify...
When I first load up the app/list and pull to refresh nothing happens. It's only when I navigate to a different view and return does the functionality work.
If there are multiple lists in the same VStack, Rotoscope can't find table view with tag. Example: ``` VStack { List { }.onPull() List { }.onPull() } ```
Hi, I am using your pull to refresh extension. When I pull its not going back to its original place. Loader keeps loading. ``` NavigationView{ List{ ForEach(0..
Have you considered adding some functionality to allow programmatic call to refresh?? ``` extension UIRefreshControl { func programaticallyBeginRefreshing(in tableView: UITableView) { beginRefreshing() let offsetPoint = CGPoint.init(x: 0, y: -frame.size.height) tableView.setContentOffset(offsetPoint,...
As title, I believe this is a known issue. As soon as I commented out `.onPull()`, LivePreview works again. I would also like to thank you for the effort and...