inputs Components

Inputs

Components for data entry and user input. Includes text fields, search bars, pickers, and other form controls for collecting information from users.

10 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 inputs component here
        }
    }
}