- July 30, 2025
- Mins Read
LiquidLoader is the spinner loader UI components with liquid animation, inspired by Spinner Loader – Gooey light Effect
let loader = LiquidLoader(frame: loaderFrame, effect: .growCircle(circleColor, 10, 1.0, growColor)) //color, number of circles, duration, growColor.
view.addSubview(loader)
You can show and hide a loader.
loader.show()
loader.hide()
You can use the following effects.
If you want to avoid grow effects, you should use .circle
or .line
.
pod “LiquidLoader”
or, if you use Carthage, add the following line to your Carthage
file.
github “yoavlt/LiquidLoader”
PermissionsSwiftUI displays and handles permissions in SwiftUI. It is largely inspired by SPPermissions. The UI is highly customizable and resembles an Apple style. ...
Introduction PagerTabStripView is the first pager view built in pure SwiftUI. It provides a component to create interactive pager views ...
1. Taking Action When a Property Changes: Property Observers Swift lets you observe and respond to changes in a property’s ...