A vertical SeekBar build with two SizedBox with versatile appearance.
Inspired by the BoxedVerticalSeekBar Android library by @alpbak.
Import into your project.
pubspec.yaml:
dependencies:
...
boxed_vertical_seekbar: ^1.0.0
Use the widget in your project. Height and width parameters are required.
Example:
BoxedVerticalSeekbar(
height: 400.0,
width: 150.0,
onValueChanged: (newValue) => print(newValue),
)
To learn more about the available parameters visit the docs.
Default appearance of the SeekBar is a red active bar over a grey inactive bar.
For help getting started with Flutter, view our online documentation.