flutter
rangeslider
an extension of the flutter material slider to allow selection of a range of values via 2 thumbs.
![[2025] RangeSlider - Extend Material Slider rangeslider - extend material slider](https://i0.wp.com/flutterawesome.com/content/images/2018/09/rangeslider.gif?w=770&ssl=1)
step by step explanation
a full explanation on how to build such widget may be found on my blog:
getting started
you should ensure that you add the following dependency in your flutter project:
dependencies:
flutter_range_slider: "^0.0.4"
you should then run flutter packages upgrade
or update your packages in intellij.
in your dart code, to use it:
import 'package:flutter_range_slider/flutter_range_slider.dart';
example
an example can be found in the example
folder. check it out.
![[2025] RangeSlider - Extend Material Slider](https://i0.wp.com/www.didierboelens.com/images/blog/range_slider_3.gif?w=770&ssl=1)
Comments are closed.