Description of the problem:
I was trying to implement MultiSlider in SwiftUI, but the MultiValueSlider doesn't seem to be available in SwiftUI View file.
What I did:
Installed the pod 'MultiSlider'
Imported in the View file
Tried to access MultiSlider as MultiValueSlider as shown in the readme file
I am a very beginner in Swift and SwiftUI, please correct if I am doing anything in the wrong way.
Minimal project that reproduces the problem (so I'll be able to figure out how to fix it):
I have nothing much in my project just a view file and I am trying to add MultiSlider in there.
import SwiftUI
import MultiSlider
struct HomeView: View {
var body: some View{
VStack(){
MultiValueSlider(...) // Not available
}
}
}
Description of the problem: I was trying to implement MultiSlider in SwiftUI, but the MultiValueSlider doesn't seem to be available in SwiftUI View file.
What I did:
I am a very beginner in Swift and SwiftUI, please correct if I am doing anything in the wrong way.
Minimal project that reproduces the problem (so I'll be able to figure out how to fix it): I have nothing much in my project just a view file and I am trying to add MultiSlider in there.