我正在尝试使用expo-apple-authentication包在我的 iOS 应用程序中实现 Apple Sign In,但我无法显示该按钮。即使我使用与文档完全相同的代码:
<AppleAuthentication.AppleAuthenticationButton
buttonType={
AppleAuthentication.AppleAuthenticationButtonType.SIGN_IN
}
buttonStyle={
AppleAuthentication.AppleAuthenticationButtonStyle.BLACK
}
cornerRadius={5}
onPress={() => {
}}
/>
Run Code Online (Sandbox Code Playgroud)
值得注意的是,对 AppleAuthentication.isAvailableAsync() 的调用返回 true。
我正在模拟器中测试它。它不应该在开发环境中工作吗?那我该怎么测试呢?