navigation Components

Navigation Components

Components for app navigation, including tab bars, sidebars, breadcrumbs, and segmented controls. Build intuitive navigation patterns that help users move through your app effortlessly.

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 navigation component here
        }
    }
}