Starting in Xcode 12 buttons are causing my code to not compile.
At the basic level it's failing which was not failing in Xcode 11.*.
At the basic level it's failing which was not failing in Xcode 11.*.
Code Block import SwiftUI struct Foo1: View { var body: some View { VStack { Button(action: print("How about now?")) { Text("test") } } } } struct Foo1_Previews: PreviewProvider { static var previews: some View { Foo1() } }