Slider
Basic example
View.Slider( 5.0 )
Basic example with styling
View.Slider(
backgroundColor = style.ViewColor,
minimumMaximum = (0.0, 10.0),
value = 5.0
)
See also:
More examples
View.Slider(
minimumMaximum = (0.0, 10.0),
value = double step,
valueChanged = (fun args -> dispatch (SliderValueChanged (int (args.NewValue + 0.5))))
)
