One thing I don’t like about Swift and SwiftUI is overloaded constructors, there’s at least 3 ways to create a button.
What’s your favorite way?
Compact constructor.
Button( "Label" ) {
// code goes here
}
or
Button( "Label", systemImage: "plus" ) { // code goes here }
Action first then label
Button( action: { // code goes here } ) {
HStack{
Image( systemName: "plus" )
Text( "Label" )
}
}
Another way of action first then label.
Button {
// code goes here
} label: {
Text( "Label" )
}
The last two allow for far more control over the button label, including images that are not SF Symbols, but I think I prefer the compact version.