FUISliderFormView

The content view of FUISliderCollectionViewCell.

Theming

Supported style classes.

FUISliderFormView
FUISliderFormView_title
FUISliderFormView_subtitle
FUISliderFormView_footnote
{
font-color { -disabled } (Color)
font-style { -disabled } (UIFont.TextStyle)
}

FUISliderFormView_slider
{
thumb-color { -disabled } (Color)
minimum-track-color { -disabled } (Color)
maximum-track-color { -disabled } (Color)
view-alpha-value  { -disabled } (Float)
}
  • Indicate whether the user can change the value for slider. This is set to true by default.

    Declaration

    Swift

    open var isEditable: Bool { get set }
  • Indicate whether the slider is enabled. isEnabled and isEditable are in sync.

    Declaration

    Swift

    open override var isEnabled: Bool { get set }
  • The unit of measure for value.

    Declaration

    Swift

    open var unit: Unit? { get set }
  • The formatter to format the presentation of unit.

    Declaration

    Swift

    open var formatter: MeasurementFormatter! { get set }
  • The maximum value of the slider.

    Declaration

    Swift

    open var maximumValue: Float { get set }
  • The minimum value of the slider.

    Declaration

    Swift

    open var minimumValue: Float { get set }
  • A Boolean value indicating whether changes in the slider’s value generate continuous update events.

    Declaration

    Swift

    open var isContinuous: Bool { get set }
  • Declaration

    Swift

    @objc
    public var sliderView: UISlider { get }
  • Declaration

    Swift

    public var value: Float { get set }
  • Implementation of the change handler. This is invoked on changes to the value property.

    Declaration

    Swift

    public var onChangeHandler: ((Float) -> Void)?