A colorful customizable slider widget written with Flutter.
A simple vertical slider, which can be used for example to confirm a user action.
The following settings can be adjusted:
- Optional icon inside the draggable nob
- Optional background widget inside the slider
- Background widget becomes increasingly invisible when the slider moves upwards
- Shimmer over the background widget
- Alternative upward pointing arrow included as background widget
- Full color customization of border, inner background or inner gradient
Just include Slidy with
import 'package:slidy/slidy.dart';
and include it in your app. For example like:
Slidy(
displayArrowBackgroundElement: true,
shimmer: true,
nobIcon: const Icon(
Icons.favorite,
color: Colors.white,
),
height: 200,
width: 60,
action: () {
setState(() {
counter = counter + 1;
});
},
),
Please submit as Issues any problems or feature suggestions.