Last updated:
0 purchases
sexyslider
sexyslider #
A sexy slider widget.
Supported platforms #
Flutter Android
Flutter iOS
Flutter web
Flutter desktop
Installation #
Add sexyslider: ^1.0.0 to your pubspec.yaml dependencies. And import it:
import 'package:sexyslider/sexyslider.dart';
copied to clipboard
How to use #
SexySlider(
value: sliderValue,
onChanged: (value) {
setState(() {
sliderValue = value;
});
},
),
copied to clipboard
Params #
SexySlider(
value: sliderValue,
minValue: 0,
maxValue: 100,
onChanged: (value) {
setState(() {
sliderValue = value;
});
},
decoration: SexySliderDecoration(
width: 200,
height: 600,
backgroundColor: Colors.black,
valueColor: Colors.green,
borderRadius: BorderRadius.circular(45),
),
),
copied to clipboard
License #
MIT
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.