A SwiftUI wrapper around LiquidLoader
File > Swift Packages > Add Package Dependency: https://github.com/MahdiBND/LiquidLoaderSwiftUI
First import LoadingView
Embed your view content in a ZStack
with the Loader as the last element.
ZStack {
ScrollView {
//...
}
Loading(background: .green, tint: .cyan)
}
- Takuma Yoshida - Initial work