Xaver Lohmüller
Xaver Lohmüller
# Description In our app, we do a lot of [snapshot testing](https://github.com/pointfreeco/swift-snapshot-testing). To keep these deterministic, we disable the Lottie animations by hand, which works :+1:. It would be much...
The name `@Persistence` does the job, but ideally there should be some way to just call it `@AppStorage` without name clashes. Even better, the whole type should disappear on Xcode...
We're using a `UICollectionView` and want to make use of `UICollectionViewDiffableDataSource`. `SwipeCellKit` has quite a few operations that are forbidden (such as `collectionView?.deleteItems(at: [indexPath])`) with the new datasource paradigm. Is...
Version ======== `077c096c3ddfc38db223ac8e525ad16ffb987138` Environment =========== macOS 10.15.6, Swift 5.2, Xcode 11.6 Description ============ I was following the steps from `README.md` to learn about SwiftCheck. Unfortunately, the example for complex properties...
(Solves #92) Checks if the font name is the system font name, in which case we use the `UIFont.systemFont(ofSize:)` API to generate the font instance. Using `UIFont(name:size:)` with `.SFUI` fonts...
Is there an option for generating licenses by target? Currently, all dependencies end up in all targets: * `Target A`, depends on `DependencyA` * `Target B`, depends on `DependencyB` The...
I'm trying to use this in a package that needs to be compatible with iOS 12, but simply integrating `AsyncCompatibilityKit` results in an error: The fix: Add `introduced: 13.0` to...
The scanner is currently very buggy when rotating the device 1. Before opening the scanner 2. While scanning
## Goals We are in the process of adopting SPM as our primary package manager. Given that it now supports binary artefacts, is there any chance that Realm can be...