This device is already associated with other accounts in the Apple Developer Program or the Apple Developer Enterprise Program. Please use a different device.
Post
Replies
Boosts
Views
Activity
We create app but not select Bundle ID. I was create some Certificates, Identifiers & Profiles. But not show one this. Please check bug.
Thank Apple!
struct NetworkImage: View {
let url: URL?
var body: some View {
Group {
if let url = url, let imageData = try? Data(contentsOf: url),
let uiImage = UIImage(data: imageData) {
Image(uiImage: uiImage)
.resizable()
}
else {
Image("league")
}
}
}
}
NetworkImage(url: URL(string: context.attributes.imageGame))
.aspectRatio(contentMode: .fill)
.frame(width: 35, height: 35)
.clipShape(Circle())