๐๏ธButton
โฑ๐ง under construction
SwiftUI โฉ Controls โฉ Button
๐ง
// syntax 1:
Button(action: { /* action closure */ }) {
// label view
}
// syntax 2:
Button("localizedStringKey") {
// action closure
}
Last updated
Was this helpful?