Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.11 KB

README.md

File metadata and controls

40 lines (28 loc) · 1.11 KB

boxed_vertical_seekbar

A vertical SeekBar build with two SizedBox with versatile appearance.

Inspired by the BoxedVerticalSeekBar Android library by @alpbak.

Preview

Usage

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.

Getting Started

For help getting started with Flutter, view our online documentation.