NativeScript Core

Slider

The NativeScript Slider component lets the user to drag a control to select a value. You can set the specific range to use by setting the component’s minValue and maxValue.

Usage

<Slider value="10" minValue="0" maxValue="100" loaded="onSliderLoaded" />

Improve this document

Demo Source


Styling

<Slider value="10" minValue="0" maxValue="100"
        backgroundColor="green" color="red" />

Improve this document

Demo Source


Creating Slider component via Code-Behind

<StackLayout id="stackLayoutId">
        <Label text="{{ 'Result: ' + slResult}}" textWrap="true" />

</StackLayout>

Properties

Name Type Description
selectedIndex number Gets or sets the selected index of the SegmentedBar component.
items Array<SegmentedBarItem> Gets or sets the items of the SegmentedBar.
selectedBackgroundColor Color Gets or sets the selected background color of the SegmentedBar component.

Events

Name Description
selectedIndexChanged Emitted when the selected index is changed (via interaction or programmatically).

API References

Name Type
tns-core-modules/ui/slider Module
Slider Class

Native Component

Android iOS
android.widget.SeekBar UISlider