progresso 0.1.1 copy "progresso: ^0.1.1" to clipboard
progresso: ^0.1.1 copied to clipboard

outdated

A linear progress bar for flutter, allow for non-zero starting, points along line, and custom styling

Progresso #

A linear progress bar for Flutter.

Getting Started #

Add to pubspec.yaml

progresso: <lastest version>

import in your flutter project

import 'package:progresso/progresso.dart';

Features #

In its simplest form Progresso takes a progress parameter (0.0 to 1.0)

basic

Progresso(progress: 0.5);

You can also configure the color

custom color

Progresso(
    progress: 0.5, 
    progressColor: Colors.red, 
    backgroundColor: Colors.blue
);

Progresso can even start at a value that is not zero!

non-zero start

Progresso(start: 0.3, progress: 0.5);

Give the progress bar different stroke caps:

round end caps

Progresso(
    progress: 0.5, 
    progressStrokeCap: StrokeCap.round,
    backgroundStrokeCap: StrokeCap.round
);

Give a List of points to show points along the progress bar

points

Progresso(progress: 0.5, points: [0.2, 0.4]);
21
likes
0
pub points
84%
popularity

Publisher

verified publisherrussbiggs.com

A linear progress bar for flutter, allow for non-zero starting, points along line, and custom styling

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on progresso