Contents

buh/CompactSlider

CompactSlider is a SwiftUI control for macOS, iOS, watchOS and visionOS.

Slider Types

The slider basically defines two variants: a linear slider and a grid slider. The linear slider can be horizontal or vertical, and also scrollable, where the handle is still and the scale is moving.

The grid slider can be used to select a point in a grid or a polar point in a circular grid. The point in the grid represents a value of the x and y axis. The polar point represents a value of the angle and radius.

Possible slider types defined by the CompactSliderType: - a horizontal slider with alignments: leading, center, trailing. - a vertical slider with alignments: top, center, bottom. - a scrollable horizontal slider. - a scrollable vertical slider. - a grid slider. - a circular grid slider.

  • Swift 5.9+
  • Xcode 16+ (Use xcode15 branch, if you have to use Xcode 15)
  • SwiftUI 3+
  • macOS 12+
  • iOS 15+
  • watchOS 8+
  • visionOS 1+

Installation

  1. In Xcode go to FileAdd Packages....
  2. Search for the link below and click Add Package:
https://github.com/buh/CompactSlider.git
  1. Select to which target you want to add it and select Add Package.

Quick Start

Basic Usage

import CompactSlider

// Single value
@State private var volume: Double = 0.5

CompactSlider(value: $volume)
    .frame(height: 44)
// With range and steps
@State private var brightness: Double = 50

CompactSlider(value: $brightness, in: 0...100, step: 5)
    .frame(height: 44)
// Range selection
@State private var minPrice: Double = 20
@State private var maxPrice: Double = 80

CompactSlider(from: $minPrice, to: $maxPrice, in: 0...100)
    .frame(height: 44)
// Multiple values
@State private var markers: [Double] = [0.2, 0.5, 0.8]

CompactSlider(values: $markers)
    .frame(height: 44)

Slider Types

// Horizontal alignments
CompactSlider(value: $value)
    .compactSliderStyle(default: .horizontal(.leading))  // Default
    .compactSliderStyle(default: .horizontal(.center))
    .compactSliderStyle(default: .horizontal(.trailing))

// Vertical alignments
CompactSlider(value: $value)
    .compactSliderStyle(default: .vertical(.top))
    .compactSliderStyle(default: .vertical(.center))
    .compactSliderStyle(default: .vertical(.bottom))
    .frame(width: 44)

// Scrollable (fixed handle, moving scale)
CompactSlider(value: $value)
    .compactSliderStyle(default: .scrollable())
    .frame(height: 44)

// Grid (2D point selection)
@State private var point = CGPoint(x: 50, y: 50)

CompactSlider(point: $point, in: .zero...CGPoint(x: 100, y: 100))
    .compactSliderStyle(default: .grid())
    .frame(width: 200, height: 200)

// Circular grid (polar coordinates)
@State private var polarPoint = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0.5)

CompactSlider(polarPoint: $polarPoint)
    .compactSliderStyle(default: .circularGrid())
    .frame(width: 200, height: 200)

Common Options

CompactSlider(value: $value)
    .compactSliderOptionsByAdding(
        .tapToSlide,              // Click to set value
        .scrollWheel,             // macOS scroll wheel support
        .snapToSteps,             // Snap while dragging
        .precisionControl()       // Drag perpendicular for fine control
    )

Customization

// Colors and styling
CompactSlider(value: $value)
    .accentColor(.purple)
    .frame(height: 44)

// Custom scale
CompactSlider(value: $value)
    .compactSliderScale(
        visibility: .always,
        lineLength: 8,
        color: .blue
    )

// Custom handle
CompactSlider(value: $value)
    .compactSliderHandleStyle(
        .circle(visibility: .always, radius: 20)
    )

SystemSlider

For a native system-styled slider:

import CompactSlider

SystemSlider(value: $volume)
SystemSlider(from: $min, to: $max)

Documentation

Full API documentation available at:

The default style composition

<img width="576" alt="image" src="https://github.com/user-attachments/assets/2320584c-6dc8-49a4-8193-05c09bd484f4" />

Demo

The demo package contains several use cases.

Demo | macOS | iOS | | ------------- | ------------- | | <img width="387" alt="macOS" src="https://github.com/user-attachments/assets/44d1751c-2e99-4e62-ab8b-1ee011cebd11" /> | <img width="391" alt="iOS" src="https://github.com/user-attachments/assets/a2fa2bbf-f9e1-4fbd-a754-9e08dfc45a16" /> | | <img width="390" alt="macOS" src="https://github.com/user-attachments/assets/d5dfacca-26c1-4a0f-909a-309df4b60abf" /> | <img width="392" alt="iOS" src="https://github.com/user-attachments/assets/c619bed8-5634-4554-88f6-cac6bfa70587" /> | | <img width="420" alt="macOS" src="https://github.com/user-attachments/assets/16fb1ad5-0173-4f1b-8ec0-73070ae066f4" /> | <img width="391" alt="iOS" src="https://github.com/user-attachments/assets/167dc5ea-49b0-4b8c-b7e3-00337bce050c" /> |

GridDemo | macOS | iOS | | ------------- | ------------- | | <img width="371" alt="macOS" src="https://github.com/user-attachments/assets/34cd8742-a98b-4616-9388-bd6afac550e9" /> | <img width="354" alt="iOS" src="https://github.com/user-attachments/assets/ceac4cb0-b9ab-4fe8-823c-45729859155c" /> |

CircularGridDemo | macOS | iOS | | ------------- | ------------- | | <img width="371" alt="macOS" src="https://github.com/user-attachments/assets/8def037d-6d7b-4343-9d96-be4867249fdc" /> | <img width="379" alt="iOS" src="https://github.com/user-attachments/assets/9940d142-0c68-4282-ab75-f054c26e99fa" /> |

SystemDemo | macOS | iOS | | ------------- | ------------- | | <img width="394" alt="macOS" src="https://github.com/user-attachments/assets/ae6cc1fb-ae52-4ba9-b238-3d5e88345b38" /> | <img width="387" alt="iOS" src="https://github.com/user-attachments/assets/7bea24f0-c043-4c20-8714-6500b1862e0c" /> |

visionOS <img width="950" alt="visionOS" src="https://github.com/user-attachments/assets/7a42e4f8-b739-4b98-ba8c-1266884e1131" />

WatchOSDemo | Horizontal | Vertical | Grid | Circular Grid | | ------------- | ------------- | ------------- | ------------- | | <img width="274" alt="WatchOSDemo" src="https://github.com/user-attachments/assets/9c85510c-47ac-401b-8fc6-d1c6508c2693" /> | <img width="272" alt="WatchOSDemo" src="https://github.com/user-attachments/assets/370afdce-6944-4db3-b681-e28f811719e0" /> | <img width="270" alt="WatchOSDemo" src="https://github.com/user-attachments/assets/eb0bbe15-a99a-4e9c-951e-7caa39ebd1b1" /> | <img width="269" alt="WatchOSDemo" src="https://github.com/user-attachments/assets/ec29ecbb-159c-43b5-96dd-3b115b73fd61" /> |

Version 1.0 (deprecated)

Version 1.0 is deprecated and no longer supported. You can find the documentation for version 1.0 in the file: README v1.

Support

You can buy me a coffee here ☕️

License

CompactSlider is available under the MIT license

Package Metadata

Repository: buh/CompactSlider

Stars: 543

Forks: 36

Open issues: 1

Default branch: main

Primary language: swift

License: MIT

Topics: control, ios, ipados, macos, slider, swift, swiftui, ui-components, visionos, watchos

README: README.md