James Pamplona
James Pamplona
I'm running into this exact same thing except with UITableView instead of UICollectionView. I'm subscribed to the `willBeginDraggingPublisher` and `didScrollPublisher` of the table view, and also subscribed to the `didSelectRowPublisher`,...
Hmm, I'll add a test for the @dynamicCallable code that's not currently covered.
Oh, right. It didn't even occur to me that methods with default arguments would behave differently. Hmm, yeah I see what you mean about it not being ideal to have...
Actually, thinking about this more, It would add a lot of idiosyncrasy in that you'd have to only use parens to call a method if all its arguments have default...
And, I just realized this doesn't handle named parameters at all... I'm going to flesh this out more. Thanks for looking at this.
This should be generalized as a choice representation style, `.custom`. that takes a closure that is passed a collection of choices, then the consumer can decide how they want that...
@ShikiSuen thanks for reporting this. It looks like you're using `NSShowNonLocalizedStrings`. Using `Text(verbatim:)` would prevent library consumers from being able to localize this particular string. To get rid of the...
Let's make it a modifier `.selectionIndicator` that takes a view or view builder
@ShikiSuen `SwiftUI.Picker` already supports optional and multi selection on macOS. This library was mainly created to fill in this gap in functionality for iOS. I'm open to making it available...
@ShikiSuen > If the picker is placed inside a Form with `.formStyle(.grouped)`, then just make it look exactly like what single picker appears in a grouped form. Last I checked,...