├── .gitignore ├── Assets ├── CircleSlider1.png ├── CircleSlider2.png ├── CircleSlider3.png ├── IncrementalSlider1.png └── IncrementalSlider2.png ├── Package.swift ├── README.md └── Sources └── Sliders ├── Circle ├── CircleSliderArcShape.swift ├── CircleSliderButton.swift ├── CircleSliderMetadata.swift └── CircleSliderOverlay.swift └── IncrementalSlider.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/CircleSlider1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/Assets/CircleSlider1.png -------------------------------------------------------------------------------- /Assets/CircleSlider2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/Assets/CircleSlider2.png -------------------------------------------------------------------------------- /Assets/CircleSlider3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/Assets/CircleSlider3.png -------------------------------------------------------------------------------- /Assets/IncrementalSlider1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/Assets/IncrementalSlider1.png -------------------------------------------------------------------------------- /Assets/IncrementalSlider2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/Assets/IncrementalSlider2.png -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Sliders/Circle/CircleSliderArcShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/Sources/Sliders/Circle/CircleSliderArcShape.swift -------------------------------------------------------------------------------- /Sources/Sliders/Circle/CircleSliderButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/Sources/Sliders/Circle/CircleSliderButton.swift -------------------------------------------------------------------------------- /Sources/Sliders/Circle/CircleSliderMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/Sources/Sliders/Circle/CircleSliderMetadata.swift -------------------------------------------------------------------------------- /Sources/Sliders/Circle/CircleSliderOverlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/Sources/Sliders/Circle/CircleSliderOverlay.swift -------------------------------------------------------------------------------- /Sources/Sliders/IncrementalSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heestand-xyz/Sliders/HEAD/Sources/Sliders/IncrementalSlider.swift --------------------------------------------------------------------------------