├── .DS_Store ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── SteppedSlider │ ├── SnapScrollBehavior.swift │ └── SteppedSlider.swift ├── Tests └── SteppedSliderTests │ └── SteppedSliderTests.swift ├── sample.gif └── sample.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/SteppedSlider/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/SteppedSlider/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/SteppedSlider/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/SteppedSlider/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/SteppedSlider/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/SteppedSlider/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SteppedSlider/SnapScrollBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/SteppedSlider/HEAD/Sources/SteppedSlider/SnapScrollBehavior.swift -------------------------------------------------------------------------------- /Sources/SteppedSlider/SteppedSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/SteppedSlider/HEAD/Sources/SteppedSlider/SteppedSlider.swift -------------------------------------------------------------------------------- /Tests/SteppedSliderTests/SteppedSliderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/SteppedSlider/HEAD/Tests/SteppedSliderTests/SteppedSliderTests.swift -------------------------------------------------------------------------------- /sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/SteppedSlider/HEAD/sample.gif -------------------------------------------------------------------------------- /sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/SteppedSlider/HEAD/sample.png --------------------------------------------------------------------------------