Skip to content

npanagop/flutter_boxed_vertical_seekbar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.