๐ŸŽ›๏ธButton

โ•ฑ๐Ÿšง under construction

SwiftUI โŸฉ Controls โŸฉ Button

๐Ÿšง

// syntax 1:
Button(action: { /* action closure */ }) {
    // label view
}

// syntax 2:
Button("localizedStringKey") {
    // action closure
}

Last updated