Geri-Borbas / iOS.Blog.SwiftUI_Pull_to_Refresh

✳️ SwiftUI Pull to Refresh (for iOS 13 and iOS 14) condensed into a single modifier.

Home Page:https://blog.eppz.eu/swiftui-pull-to-refresh/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SwiftUI Pull to Refresh

⬇️🔄 SwiftUI Pull to Refresh (for iOS 13 and iOS 14) condensed into a single modifier.

Complementary repository for article SwiftUI Pull to Refresh (for iOS 13 and iOS 14). With this extension you can backport the iOS 15 refreshable modifier to iOS 13 and iOS 14, and use the exact same code across the board.

SwiftUI_Pull_to_Refresh_iOS_13_iOS_14.mp4
struct ContentView: View {
    
	...
    
    var body: some View {
        List {
            ...
        }
        .refreshable {
            await viewModel.fetch()
        }
    }
}

Alternatively, you can opt into the closure-based API below to spare using async await API.

struct ContentView: View {
    
	...
    
    var body: some View {
        List {
            ...
        }
        .onRefresh { refreshControl in
            viewModel.fetch {
                refreshControl.endRefreshing()
            }
        }
    }
}

Quick Start

See details in OnRefreshModifier.swift and RefreshableModifier.swift in Refreshable package. Find the examples above in the Examples folder.

For your own projects, simply use Refreshable Swift Package.

License

Licensed under the MIT License.

About

✳️ SwiftUI Pull to Refresh (for iOS 13 and iOS 14) condensed into a single modifier.

https://blog.eppz.eu/swiftui-pull-to-refresh/


Languages

Language:Swift 57.5%Language:Objective-C 42.5%