cred_progress_bar 0.0.2 copy "cred_progress_bar: ^0.0.2" to clipboard
cred_progress_bar: ^0.0.2 copied to clipboard

An elegant cred-like animated progress bar authored in the dart for flutter.

Cred like progress bar written in dart for flutter #

license pub.dev

Showcase #

screen-20221125-114041_5_AdobeExpress

screen-20221125-115431_2_AdobeExpress

Get wonderful cred like progress bar for your horizontal list view with minimal efforts

Getting Started #

In your flutter project add the dependency:

dependencies:
  cred_progress_bar: ^0.0.1

Usage #

import 'package:cred_progress_bar/cred_progress_bar.dart';
 CredProgressBar(
   controller: _scrollController,
   barWidth: 120,
   thumbWidth: 12,
   barHeight: 14,
   barColor: Colors.amber,
   thumbColor: Colors.purple.shade300,
);

Note: Don't forgot to add BouncingScrollPhysics to your listView. This is required to get bouncy fluid animation

ListView Example #

ListView.builder(
  physics: const BouncingScrollPhysics(), // add this to get fluid animation
  scrollDirection: Axis.horizontal,
  controller: _scrollController,
);

Thanks for using my package 🙏 #

10
likes
150
points
21
downloads

Publisher

unverified uploader

Weekly Downloads

An elegant cred-like animated progress bar authored in the dart for flutter.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on cred_progress_bar