【发布时间】:2020-01-19 19:02:27
【问题描述】:
我正在尝试使用 expo-apple-authentication 包在我的 iOS 应用程序中实现 Apple 登录,但我无法显示按钮。即使我使用与文档完全相同的代码:
<AppleAuthentication.AppleAuthenticationButton
buttonType={
AppleAuthentication.AppleAuthenticationButtonType.SIGN_IN
}
buttonStyle={
AppleAuthentication.AppleAuthenticationButtonStyle.BLACK
}
cornerRadius={5}
onPress={() => {
}}
/>
值得注意的是,对 AppleAuthentication.isAvailableAsync() 的调用返回 true。
我正在模拟器中对其进行测试。它不应该在开发环境中工作吗?那我该怎么测试呢?
【问题讨论】:
标签: ios react-native expo apple-sign-in