overlays Components

Overlay Components

Components that appear above other content, including popovers and context menus. Perfect for displaying additional information or actions without navigating away from the current screen.

2 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 overlays component here
        }
    }
}