Skip to content

The compiler is unable to type-check this expression in reasonable time #48

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
fqclovelal opened this issue Mar 28, 2025 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@fqclovelal
Copy link

var body: some View {
ZStack {
ForEach(
self.matrix.flatten.map { IdentifiableIndexedBlock(indexedBlock: $0) }
) { block in
self.createBlock(block.item)
.frame(width: 65, height: 65, alignment: .center)
.position(x: CGFloat(block.index.0) * (65 + 12) + 32.5 + 12,
y: CGFloat(block.index.1) * (65 + 12) + 32.5 + 12)

                .transition(.blockAppear(from: self.blockEnterEdge))
            
        }
    }.frame(width: 320, height: 320, alignment: .center)
    .background(
        Rectangle()
            .fill(Color(red:0.72, green:0.66, blue:0.63, opacity:1.00))
    ).clipped().cornerRadius(6)
}
@fqclovelal fqclovelal added the bug Something isn't working label Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants