selection Components

Selection

Components for making choices and selections. Includes toggles, checkboxes, radio groups, sliders, and chips for single or multiple selection scenarios.

9 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 selection component here
        }
    }
}