Svelte Material UI - Slider
Sliders are range selectors, providing the functionality of <input type="range">
.
Installation
npm install --save-dev @smui/slider
Demo
See it in action.
See the demo code.
Whoa There, These Docs are Outdated
The latest SMUI v3 beta had a lot of changes, and these docs haven't been caught up yet. You should check out the demo page's code to see the latest usage.
Basic Usage
<Slider bind:value />
<script>
import Slider from '@smui/slider';
let value = 0;
</script>
Exports
todo...
More Information
See Sliders in the Material design spec.
See Slider in MDC-Web for information about the upstream library's architecture.