У меня есть такая структура. Как мне вызвать SwiftUIButton с действием?
struct SwiftUIButton: View{ let action: () -> () var body: some View{ Button(action: action){Text("Tap me")} } }
Здесь это
SwiftUIButton { // do anything here print(">> button tapped") }
, что совпадает (но короткий вариант) с
SwiftUIButton(action: { // do anything here print(">> button tapped") })