Files
TUIkit/Sources/TUIkitExample/Pages/SliderPage.swift
T
phranck bc9841cdc9 Feat: Add Slider and Stepper components with TrackStyle refactor
- Slider: Interactive track control with keyboard navigation (arrow keys, +/-, Home/End)
- Stepper: Increment/decrement control with value or custom callbacks
- TrackStyle: Renamed from ProgressBarStyle, shared between ProgressView and Slider
- TrackRenderer: Extracted utility for track rendering
- 59 new tests (892 total), Example app demo pages for both components
2026-02-09 21:52:37 +01:00

114 lines
4.5 KiB
Swift

// TUIKit - Terminal UI Kit for Swift
// SliderPage.swift
//
// Created by LAYERED.work
// License: MIT
import TUIkit
/// Slider demo page.
///
/// Shows interactive slider features including:
/// - Different track styles (block, shade, dot, bar)
/// - Various ranges and step sizes
/// - Keyboard controls
/// - Live value display
struct SliderPage: View {
@State var volume: Double = 0.5
@State var brightness: Double = 75
@State var rating: Double = 3
@State var precision: Double = 0.5
var body: some View {
VStack(alignment: .leading, spacing: 1) {
DemoSection("Basic Slider (Block Style)") {
VStack(alignment: .leading, spacing: 1) {
HStack(spacing: 1) {
Text("Volume:").foregroundStyle(.palette.foregroundSecondary)
Slider(value: $volume)
}
}
}
DemoSection("Track Styles") {
VStack(alignment: .leading, spacing: 1) {
HStack(spacing: 1) {
Text("Block:").foregroundStyle(.palette.foregroundSecondary)
Slider(value: $volume).trackStyle(.block)
}
HStack(spacing: 1) {
Text("Shade:").foregroundStyle(.palette.foregroundSecondary)
Slider(value: $volume).trackStyle(.shade)
}
HStack(spacing: 1) {
Text("Dot: ").foregroundStyle(.palette.foregroundSecondary)
Slider(value: $volume).trackStyle(.dot)
}
HStack(spacing: 1) {
Text("Bar: ").foregroundStyle(.palette.foregroundSecondary)
Slider(value: $volume).trackStyle(.bar)
}
}
}
DemoSection("Custom Ranges") {
VStack(alignment: .leading, spacing: 1) {
HStack(spacing: 1) {
Text("Brightness (0-100, step 5):").foregroundStyle(.palette.foregroundSecondary)
Slider(value: $brightness, in: 0...100, step: 5)
}
HStack(spacing: 1) {
Text("Rating (1-5, step 1): ").foregroundStyle(.palette.foregroundSecondary)
Slider(value: $rating, in: 1...5, step: 1)
}
HStack(spacing: 1) {
Text("Precision (0-1, step 0.05):").foregroundStyle(.palette.foregroundSecondary)
Slider(value: $precision, in: 0...1, step: 0.05)
}
}
}
DemoSection("Current Values") {
VStack(alignment: .leading, spacing: 1) {
HStack(spacing: 1) {
Text("Volume:").foregroundStyle(.palette.foregroundSecondary)
Text(String(format: "%.0f%%", volume * 100)).foregroundStyle(.palette.accent)
}
HStack(spacing: 1) {
Text("Brightness:").foregroundStyle(.palette.foregroundSecondary)
Text(String(format: "%.0f", brightness)).foregroundStyle(.palette.accent)
}
HStack(spacing: 1) {
Text("Rating:").foregroundStyle(.palette.foregroundSecondary)
Text(String(format: "%.0f", rating)).foregroundStyle(.palette.accent)
}
HStack(spacing: 1) {
Text("Precision:").foregroundStyle(.palette.foregroundSecondary)
Text(String(format: "%.2f", precision)).foregroundStyle(.palette.accent)
}
}
}
DemoSection("Keyboard Controls") {
VStack(alignment: .leading) {
Text("[<-] [->] Decrease/Increase by step").dim()
Text("[-] [+] Decrease/Increase by step").dim()
Text("[Home] Jump to minimum").dim()
Text("[End] Jump to maximum").dim()
Text("[Tab] Move to next slider").dim()
}
}
Spacer()
}
.appHeader {
HStack {
Text("Slider Demo").bold().foregroundStyle(.palette.accent)
Spacer()
Text("TUIkit v\(tuiKitVersion)").foregroundStyle(.palette.foregroundTertiary)
}
}
}
}