SwiftUI - BUTTON

BUTTON
Button is used to respond to click events.

Example:

Button(action: {
    print("Tap")
}) {
   Text("I'm a Button")
}

Comments

Popular posts from this blog

SwiftUI - TEXT

SwiftUI - TEXTFIELD