Basem
Basem
I have 2 circles in the same fragment that need different properties, such as start/end angles, radii, lock, etc, and also need to be dynamically configured at runtime. Is there...
It doesn't look like this repo is maintain anymore so in case it helps anyone, I've upgraded to Swift 4, did some refactoring, and even fallback to Apple MapKit if...
Great framework, thx!! Is there a way to add a translucent background to the description label? I have high-res background images and the description sometimes camouflages against the background image...
You can test by adding my forked repo into your Cart.file: github "basememara/AlertOnboarding"
It would be convenient to accept an unordered/ordered list and hide some list items to display a paged effect. There is another jQuery plugin that can do this for illustration:...
Is it possible to leverage the UIStackView to make this control even more amazing? If I were to add a UIStackView to my UICollectionViewCell, I shouldn't have to set the...
Great library btw, thanks for sharing this! I was wondering what the thoughts were behind not providing a block parameter to the execute function of the `DebouncedLimiter` like `TimedLimiter`? I...
Allows encapsulation of debounce logic in lazy loaded properties and feed into legacy Objective-C API's like `NotificationCenter`, see `#selector(refreshProgress.execute)`: ``` class ViewController: UIViewController { lazy var refreshProgress: DebouncedLimiter = {...