Swift Package Manager is integrated within Xcode 11:
- File → Swift Packages → Add Package Dependency...
- Paste the repository URL: https://github.com/moifort/swiftUI-sign-in-with-apple-button.git
import SwiftUI
import SignInWithAppleButton // Add import
struct ContentView : View {
var body: some View {
VStack {
SignInWithAppleButton()
}
}
}