Adrian Schönig
Adrian Schönig
Intuitively I'd expect `'Test'[0] == 'T'` to return `true` but it evaluates to `false`. In `equalArgs` this lands in this case: ```swift case let (lhs as AnyHashable, rhs as AnyHashable):...
I'm experimenting with using AnyExpression and its powerful support for custom data types and operators. This is working well, though I'm facing an issue when I want to use the...
- Fix compiling for Linux through SPM - Add GitHub Actions (checks on Linux, macOS 10 and macOS 11) Kudos to https://github.com/SwiftDocOrg/Markup as I've copied much of their setup. It...
As suggested by Mihajlo Grbovic, it'd be nice if loops would look like spirals following the order as defined in the CGPath rather than default merging. 
Would be nice if it was possible to add shadows to a path. For an example take a look at [AIMapViewWrapper](https://github.com/cocoatoucher/AIMapViewWrapper).
If the view is added to a nib file and the delegate is set as follows: ``` let bundle = Bundle(for: MyView.self) let view = bundle.loadNibNamed("MyView", owner: self, options: nil)?.first...
When changing the selected date to be in the week prior or after the current week, the week selector view should animate scrolling to that week rather than replacing the...
This adds a `.keyboardShortcut(_ shortcut: KeyboardShortcuts.Name)` helper function to assign a shortcut defined through this `KeyboardShortcuts` to a SwiftUI button. This provides a similar functionality to the existing `NSMenuItem` extension,...
**Describe the bug** I've integrated Runestone into one of my apps, where it gets displayed in a SwiftUI view using `UIHostingView`. I'm seeing some occasional crashes which seem to come...
I'm incorporating this library into a project where I want to let users create formulas that check against certain fields. This is mostly working, but I've hit a small roadblock...