FB11859507
Post
Replies
Boosts
Views
Activity
@dmrozmajzl said:
If you make your own "Sign In with Apple" button as a UIViewRepresentable then it works fine.
For the record, this proposed workaround does NOT fix the issue for me (not sure if I’m misunderstanding):
class SignInWithAppleButtonView: UIViewRepresentable {
func makeUIView(context: Context) -> ASAuthorizationAppleIDButton {
return ASAuthorizationAppleIDButton()
}
func updateUIView(_ uiView: ASAuthorizationAppleIDButton, context: Context) {
}
}