Someone know how to fix that?
Code Block import SwiftUI import UIKit struct ContentView: View { var Count = Int(0) var body: some View { error: "Failed to produce diagnostic for expression; please file a bug report" VStack { Image("IMG") .padding(.trailing, 353.844) .scaleEffect(0.3) .fixedSize() Spacer() Text("Count:" + String(Count)) .font(.largeTitle) .animation(.easeIn(duration: 0.5)) Spacer() Button(Text(Count), action: { Count += 1 }) } } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } }