media Components

Media & Input Components

Components for handling media and file inputs, including file upload, image picker, and map views. Build rich, interactive experiences with photos, videos, documents, and location data.

4 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 media component here
        }
    }
}