Skip to content

rafaelcolladojr/pretty_progress_indicator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pretty Progress Indicator

This progress indicator is intended as a stylized alternative to the other progress indicators floating around the web.

Features

Choose from a radial progress indicator or its more traditional linear counterpart.

Getting started

Too use this package in your projects, simply clone this repository and copy the pretty_progress_indicator.dart file to your project.

Usage

Add a Pretty Progress Indicator to your application with one of the provided widgets:

@override
void build(BuildContext context) {
    return Center(
        child: Padding(
            padding: const EdgeInsets.all(24.0),
            child:  PrettyProgressIndicator(
                indicatorType: IndicatorType.radial,
                progress: 0.63,
                barWidth: 20.0,
                textColor: Colors.red.shade200,
                barColors: [
                    Colors.red.shade200,
                    Colors.pink.shade800,
                ],
            ),
        ),
    );
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages