Post

Replies

Boosts

Views

Activity

Reply to Dismissing animation of the "Sign in with apple" modal view is broken on iOS 15.1
@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) {     } }
Apr ’22