- July 30, 2025
- Mins Read
A pulsing spinner view written in swift
// Create your spinner
let spinner = ALThreeCircleSpinner(frame: CGRectMake(0,0,44,44))
addSubview(spinner)
// And thats it, the spinner will start automagically
To stop the spinner after its started
spinner.stopAnimating()
To start it again
spinner.startAnimating()
You can control the color of the spinner using the color
property and you can set it to stay visible when animation is stopped using the hidesWhenStopped
property
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 ...