actions Components

Actions

Components that help users take action and make choices. Includes buttons, links, and menu triggers that initiate user interactions.

5 components available

Quick Import Reference

swift
// Package.swift
.package(url: "https://github.com/luizmellodev/SwiftDS-package", from: "2.0.0")

// In any SwiftUI file
import SwiftDS

struct MyView: View {
    var body: some View {
        VStack(spacing: DSSpacing.md) {
            // Use any actions component here
        }
    }
}