What is the correct syntax to create a simple SwiftUI Button?
Button { Label() }
Button(Label())
Button(Text(""))
Button() { Label() }

Mobile Application Development Exercises are loading ...