syncfusion-flutter-sliders
Syncfusion Flutter Slider Controls
This skill groups three related Syncfusion Flutter components for value selection and range interaction: SfSlider (single value), SfRangeSlider (two-thumb range), and SfRangeSelector (range selector with child content such as charts). They share many visual and configuration features but have distinct responsibilities and integration patterns.
When to Use This Skill
Use this skill when you need to:
- Select a single numeric or date value in a compact UI (use
SfSlider). - Select a start/end range with two thumbs (use
SfRangeSlider). - Select a range that drives another widget (chart zoom/selection) or shows child content (use
SfRangeSelector). - Customize visual track, ticks, labels, thumbs, or tooltips across slider controls.
- Integrate slider range with charts for selection or zooming.
- Support RTL, accessibility, and keyboard navigation for slider controls.
Choosing the Right Component
Use SfSlider when:
- You need a single value picker (volume, progress percentage, timeline scrubber).
- Simplicity and small surface area are required.
Use SfRangeSlider when:
- You need the user to pick a numeric/date interval with two thumbs.
- You need drag modes that control thumb behavior (onThumb, betweenThumbs, both).
Use SfRangeSelector when:
- You need a range control that contains or controls a child widget (commonly charts).
- You require a
RangeControllerfor programmatic updates and chart integrations.
Key Differences Summary:
| Feature | SfSlider | SfRangeSlider | SfRangeSelector |
|---|---|---|---|
| Primary purpose | Single value | Two-thumb range | Range with child (chart) |
| Value type | value |
values (SfRangeValues) |
initialValues / controller |
| Child content | ❌ | ❌ | ✅ (any widget, often charts) |
| Controller support | ❌ | ❌ | ✅ (RangeController) |
| Drag modes | — | ✅ (dragMode) | ✅ (dragMode) |
| Deferred updates | ❌ | ❌ | ✅ (enableDeferredUpdate) |
Documentation and Navigation Guide
Getting Started
📄 Read: references/getting-started.md
- Installation and package setup for all three slider controls
- Basic SfSlider implementation (horizontal and vertical)
- Basic SfRangeSlider implementation
- Basic SfRangeSelector implementation with chart integration
- Package dependencies and imports
- Quick comparison and first examples
- Numeric and date-based slider examples
Component Overview
📄 For Slider: references/slider-overview.md
- SfSlider widget overview and features
- When to use single-value slider vs range controls
- Numeric and date value support
- Horizontal and vertical orientations
- Slider-specific capabilities
- Basic slider configuration
📄 For Range Slider: references/range-slider-overview.md
- SfRangeSlider widget overview and features
- When to use Range Slider vs Range Selector
- SfRangeValues class for start/end values
- Introduction to drag modes
- Active and inactive track regions
- Range slider-specific examples
📄 For Range Selector: references/range-selector-overview.md
- SfRangeSelector widget overview and features
- When to use Range Selector for chart integration
- Child widget support (charts, graphs, custom content)
- RangeController introduction
- Difference between initialValues and controller
- Deferred updates pattern
- Chart integration patterns
Value Configuration
📄 Read: references/values-and-intervals.md
- Minimum and maximum value configuration
- Value types (double, DateTime) for each widget
- Interval configuration and step values
- Numeric ranges with custom formatting
- Date and DateTime ranges
- DateIntervalType configuration
- NumberFormat and DateFormat usage
- Value constraints and validation
Visual Customization
📄 Read: references/track-and-shapes.md
- Active and inactive track colors
- Track height and thickness customization
- Track corners and shapes
- Custom track styling patterns
- Region colors for RangeSelector
- Track appearance across all three widgets
📄 Read: references/ticks-and-dividers.md
- Enabling and configuring tick marks
- Major ticks configuration
- Minor ticks and intervals
- Divider configuration
- Tick and divider styling
- Complete examples for all three widgets
📄 Read: references/labels-and-formatting.md
- Showing and positioning labels
- NumberFormat for numeric values (currency, percentage, compact)
- DateFormat for date values (various patterns)
- Custom label formatting with labelFormatterCallback
- Label text styling
- Label offset and positioning
- Edge label visibility
📄 Read: references/thumbs-tooltips-overlay.md
- Thumb size, color, and customization
- Thumb icons and custom widgets
- Thumb stroke (border) configuration
- Overlay (ripple) configuration
- Enabling and configuring tooltips
- Tooltip shapes (rectangular, paddle)
- Tooltip text formatting
- Always-visible tooltip option
Advanced Features
📄 Read: references/drag-modes.md
- Drag mode functionality (RangeSlider and RangeSelector only)
- SliderDragMode.onThumb explanation
- SliderDragMode.betweenThumbs explanation
- SliderDragMode.both explanation
- Choosing the right drag mode
- Use cases and examples for each mode
📄 Read: references/range-controller.md
- RangeController overview (RangeSelector only)
- When to use RangeController
- Creating and disposing controllers
- Deferred updates for performance
- Programmatic range updates
- Listening to range changes
- Chart integration with controller
- Controller vs initialValues comparison
- Advanced patterns (apply button, synchronized selectors)
Event Handling
📄 Read: references/callbacks-and-events.md
- onChanged callback (continuous updates)
- onChangeStart callback (interaction start)
- onChangeEnd callback (interaction complete)
- Complete lifecycle examples
- Validation and constraints in callbacks
- Async operations and debouncing
- Event handling patterns
- Best practices for callback usage
Accessibility and States
📄 Read: references/accessibility-and-states.md
- Accessibility overview and importance
- Semantic labels for screen readers
- Enabled and disabled states
- Keyboard navigation support
- Screen reader support (VoiceOver, TalkBack)
- Right-to-Left (RTL) language support
- WCAG compliance guidelines
- Color contrast considerations
- Touch target sizing
- Testing accessibility features
Quick Start Examples
SfSlider — Basic single-value slider
double _value = 40.0;
SfSlider(
min: 0.0,
max: 100.0,
value: _value,
interval: 20,
showLabels: true,
onChanged: (dynamic newValue) {
setState(() { _value = newValue; });
},
)
SfRangeSlider — Basic range
SfRangeValues _values = const SfRangeValues(40.0, 60.0);
SfRangeSlider(
min: 0.0,
max: 100.0,
values: _values,
interval: 20,
showLabels: true,
onChanged: (SfRangeValues newValues) {
setState(() { _values = newValues; });
},
)
SfRangeSelector — Range with chart child and controller
final SfRangeValues _initial = SfRangeValues(0.3, 0.7);
RangeController _controller = RangeController(start: 0.3, end: 0.7);
SfRangeSelector(
min: 0,
max: 1,
initialValues: _initial,
controller: _controller,
child: SizedBox(height: 130, child: SfCartesianChart(...)),
)
Common Patterns
Pattern 1: Choose widget by need
- Single value →
SfSlider - Range selection →
SfRangeSlider - Range controlling chart/child →
SfRangeSelector
Pattern 2: Controlled vs Uncontrolled
SfSliderandSfRangeSliderare typically controlled by parent state viavalue/valuesandonChanged.SfRangeSelectorcan be driven viaRangeControllerfor programmatic updates and chart integrations.
Key Properties
SfSlider Essential Properties
min- Minimum value (double or DateTime)max- Maximum value (double or DateTime)value- Current slider valueinterval- Interval between divisionsstepSize- Step interval for discrete valuesonChanged- Callback when value changesonChangeStart- Callback when drag startsonChangeEnd- Callback when drag endsshowLabels- Display labels at intervalsshowTicks- Display tick marksshowDividers- Display dividersenableTooltip- Enable tooltip on interactionactiveColor- Active track colorinactiveColor- Inactive track colornumberFormat- NumberFormat for numeric valuesdateFormat- DateFormat for DateTime valuesdateIntervalType- Interval type for dates (years, months, days, etc.)labelFormatterCallback- Custom label formattingtooltipTextFormatterCallback- Custom tooltip formattingsemanticFormatterCallback- Accessibility label formatting
SfRangeSlider Essential Properties
min- Minimum value (double or DateTime)max- Maximum value (double or DateTime)values- Current range values (SfRangeValues with start and end)interval- Interval between divisionsstepSize- Step interval for discrete valuesonChanged- Callback when values changeonChangeStart- Callback when drag startsonChangeEnd- Callback when drag endsdragMode- Drag interaction mode (onDragStart, onThumb, betweenThumbs, both)showLabels- Display labels at intervalsshowTicks- Display tick marksshowDividers- Display dividersenableTooltip- Enable tooltips on interactionactiveColor- Active track color (between thumbs)inactiveColor- Inactive track colornumberFormat- NumberFormat for numeric valuesdateFormat- DateFormat for DateTime valuesdateIntervalType- Interval type for dateslabelFormatterCallback- Custom label formattingtooltipTextFormatterCallback- Custom tooltip formattingsemanticFormatterCallback- Accessibility label formatting
SfRangeSelector Essential Properties
min- Minimum value (double or DateTime)max- Maximum value (double or DateTime)initialValues- Initial range values (SfRangeValues)controller- RangeController for programmatic controlinterval- Interval between divisionsstepSize- Step interval for discrete valuesonChanged- Callback when values change (optional with controller)onChangeStart- Callback when drag startsonChangeEnd- Callback when drag endsdragMode- Drag interaction mode (onDragStart, onThumb, betweenThumbs, both)enableDeferredUpdate- Enable deferred updates for performancedeferredUpdateDelay- Delay for deferred updatesshowLabels- Display labels at intervalsshowTicks- Display tick marksshowDividers- Display dividersenableTooltip- Enable tooltips on interactionactiveColor- Active track color (between thumbs)inactiveColor- Inactive track colorchild- Child widget (typically charts)numberFormat- NumberFormat for numeric valuesdateFormat- DateFormat for DateTime valuesdateIntervalType- Interval type for dateslabelFormatterCallback- Custom label formattingtooltipTextFormatterCallback- Custom tooltip formattingsemanticFormatterCallback- Accessibility label formattingenableIntervalSelection- Enable selection by intervalshowDivisors- Show region dividers
Common Use Cases
- Volume or brightness controls —
SfSlider - Date range filters —
SfRangeSlider - Chart zoom/segment selection —
SfRangeSelector+ chart integration - Time-range pickers for analytics dashboards —
SfRangeSelector - Two-ended price range filter in product lists —
SfRangeSlider
More from syncfusion/flutter-ui-components-skills
syncfusion-flutter-calendar-datepicker
Implements Syncfusion Flutter Calendar (SfCalendar) and Date Range Picker (SfDateRangePicker) widgets for date and scheduling UIs in Flutter apps. Use when building appointment calendars, booking systems, date range selectors, or event scheduling interfaces. This skill covers calendar views, recurring events, date navigation, localization, callbacks, and customization.
29syncfusion-flutter-circular-charts
Implements Syncfusion Flutter Circular Charts (SfCircularChart) for pie, doughnut, and radial bar data visualizations in Flutter. Use when working with PieSeries, DoughnutSeries, or RadialBarSeries using the syncfusion_flutter_charts package. This skill covers chart setup, data labels, legends, tooltips, selection, annotations, gradients, animation, accessibility, and chart export.
27syncfusion-flutter-cartesian-charts
Implements Syncfusion Flutter Cartesian Charts (SfCartesianChart) for a wide range of 2D chart types in Flutter apps. Use when working with line, column, bar, area, spline, scatter, bubble, financial, stacked, or histogram charts. This skill covers axis types (NumericAxis, CategoryAxis, DateTimeAxis), zoom and pan, tooltip, trackball, legend, annotations, technical indicators, trendlines, and chart export.
27syncfusion-flutter-chat
Implements Syncfusion Flutter Chat (SfChat) and AI AssistView (SfAIAssistView) widgets for conversational interfaces in Flutter apps. Use when building chat UIs, AI chatbot interfaces, or messaging screens with support for message bubbles, composers, and action buttons. This skill covers conversation area customization, placeholder screens, theming, RTL support, and AI assistant integration.
26syncfusion-flutter-barcode-generator
Implements Syncfusion Flutter Barcode Generator (SfBarcodeGenerator) for generating 1D and 2D barcodes in Flutter apps. Use when working with QR codes, Data Matrix, Code128, EAN, UPC, or other machine-readable barcode formats. This skill covers barcode types, customization, sizing, text display, and integration into product labels, ticketing, or inventory systems.
26syncfusion-flutter-gauges
Implements Syncfusion Flutter Gauge widgets (SfLinearGauge, SfRadialGauge) for data visualization and measurement displays in Flutter apps. Use when building speedometers, progress indicators, KPI dashboards, or radial/linear measurement UIs. This skill covers gauge axes, pointers, ranges, annotations, and customization for both linear and radial gauge types.
26