ButtonKit icon indicating copy to clipboard operation
ButtonKit copied to clipboard

Asynchronous and Throwable button implementation for SwiftUI, with animations

Results 2 ButtonKit issues
Sort by recently updated
recently updated
newest added

I often have some kind of editor form with multiple fields and a save button. When the save is loading, I want to disable all the forms in the view....

Swift 6.2 added a new API to create a task: [Task.immediate(name:priority:executorpreference:operation:)](https://developer.apple.com/documentation/swift/task/immediate(name:priority:executorpreference:operation:)-88o80), also described in [SE-0472 Starting tasks synchronously from caller context](https://github.com/swiftlang/swift-evolution/blob/main/proposals/0472-task-start-synchronously-on-caller-context.md). Using this new api makes possible to remove the...

enhancement