Swiftpack.co - Rahul-Mayani/RRRangeSliderSwiftUI as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by Rahul-Mayani.
Rahul-Mayani/RRRangeSliderSwiftUI 1.0.0
Custom range slider in SwiftUI
⭐️ 19
🕓 3 years ago
iOS
.package(url: "https://github.com/Rahul-Mayani/RRRangeSliderSwiftUI.git", from: "1.0.0")

RRRangeSliderSwiftUI

License: MIT iOS Swift 5+ RangeSlider SwiftUI SPM

Custom range slider in SwiftUI

Installation

SPM (Swift Package Manager)

In Xcode, use the menu File > Swift Packages > Add Package Dependency... and enter the package URL https://github.com/Rahul-Mayani/RRRangeSliderSwiftUI.

Manually

  1. Download the project.
  2. Add RRRangeSliderSwiftUI.swift file for slider view
  3. Add necessary files in your project.
  4. Congratulations!

Usage example

To run the example project, clone the repo, and run pod install from the Example directory first.

alt text

@State var minValue: Float = 0.0
@State var maxValue: Float = Float(UIScreen.main.bounds.width - 50.0)

var body: some View {
    
    VStack {
        
        Text("Range Slider")
        /// slider view
        RRRangeSlider(
            minValue: self.$minValue, // mimimum value
            maxValue: self.$maxValue, // maximum value
            sliderWidth: CGFloat(maxValue), // set slider width
            backgroundTrackColor: Color(UIColor.systemTeal).opacity(0.5), // track color
            selectedTrackColor: Color.blue.opacity(25), // track color
            globeColor: Color.orange, // globe background color
            globeBackgroundColor: Color.black, // globe rounded border color
            globeMinMaxValuesColor: Color.black // all text label color
        )
    }
}


Contribute

We would love you for the contribution to RRRangeSliderSwiftUI, check the LICENSE file for more info.

License

RRRangeSliderSwiftUI is available under the MIT license. See the LICENSE file for more info.

GitHub

link
Stars: 19
Last commit: 3 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

SPM support
3 years ago

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics