Posts

Post not yet marked as solved
3 Replies
This is the dumbest thing. I literally can't airdrop on Big Sur, and Apple makes it almost impossible to go back to Catalina. Way to go, Apple. Seriously, I'm going to migrate away from your products after this awful move.
Post not yet marked as solved
2 Replies
Interesting update and discovery. Removing .fill(Color.black)Resolves the issue initially. From completed badge section, removing all the .fill from Badge files fixes issue. I haven't completed the project yet, and I still don't quite understand this. Any knowledge would be still greatly appreciated!//Badge.swift import SwiftUI struct Badge: View { var body: some View { Path { path in var width: CGFloat = 100.0 let height = width path.move(to: CGPoint(x: width * 0.95, y: height * 0.20)) HexagonParameters.points.forEach { path.addLine( to: .init( x: width * $0.useWidth.0 * $0.xFactors.0, y: height * $0.useHeight.0 * $0.yFactors.0 ) ) } } .fill(Color.black) } } #if DEBUG struct Badge_Previews: PreviewProvider { static var previews: some View { Badge() } } #endif