SwiftUI Codes
Best SwiftUI Code Warehouse

Lesson 4: User Interaction and Buttons

Objective:

Learn how to create buttons and handle user interactions.

Content:

1. Button View

The Button view allows users to trigger actions.

Creating a Button:

Button(action: {
    print("Button tapped!")
}) {
    Text("Tap Me")
        .padding()
        .background(Color.blue)
        .foregroundColor(.white)
        .cornerRadius(10)
}

Explanation:

2. Customizing Button Styles

Buttons can be customized with different styles and views.

Example:

Button(action: {
    print("Custom Button tapped!")
}) {
    HStack {
        Image(systemName: "star.fill")
        Text("Favorite")
    }
    .padding()
    .background(Color.green)
    .foregroundColor(.white)
    .cornerRadius(10)
}

Explanation:

3. ActionSheet and Alert

Displaying action sheets and alerts to provide additional information or options to the user.

Displaying Alerts:

@State private var showAlert = false

var body: some View {
    Button("Show Alert") {
        showAlert = true
    }
    .alert(isPresented: $showAlert) {
        Alert(title: Text("Alert"), message: Text("This is an alert"), dismissButton: .default(Text("OK")))
    }
}

Explanation:

4. Advanced User Interactions

Using gestures to handle more complex interactions.

Gestures:

Text("Tap Me")
    .onTapGesture {
        print("Text tapped!")
    }

Explanation:

Lesson 5: Lists and ScrollView