Mac Gallagher
Mac Gallagher
In the standard `UIProgressView`, there is an `observedProgress` [variable](https://developer.apple.com/documentation/uikit/uiprogressview/1619840-observedprogress) which is used to automatically update the progress bar. It would be nice to have a version of this for `MultiProgressView`!...
Hi all! 👋 #### Justification Right now, there is no way to write all of the `reference`, `failure`, and `difference` files found as `XCTAttachment`s to disk. This makes it difficult...
`UIView.animateWithDuration:delay:usingSpringWithDamping:` is notorious for looking pretty bad. There are many libraries out there to improve the realism of the spring animation, but my favorite solution is [this one](https://github.com/jenox/UIKit-Playground/tree/master/01-Demystifying-UIKit-Spring-Animations) created by...
While I personally have no plans to implement this, I am open to PRs which add this functionality. Making sure the animations work properly will probably be challenging.
Curious to know whether setting ```swift layer.shouldRasterize = true layer.rasterizationScale = UIScreen.main.scale ``` on the swipe cards provides any performance improvements. Since the overlay views animate their alpha value, the...
Right now, there is only `insertCard:atIndex:Int at:Int`. It would be nice to have something like `insertCards:atIndices: [Int] at: [Int]`
The plan here is to add `IBInspectable`/`IBDesignable` support for both `SwipeCard` and `SwipeCardStack` so they work well with Storyboards. A similar enhancement was done [here](https://github.com/mac-gallagher/MultiProgressView/pull/20) on my other repo [MultiProgressView](https://github.com/mac-gallagher/MultiProgressView/)....