gradient_circular_progress_indicator 0.0.4 copy "gradient_circular_progress_indicator: ^0.0.4" to clipboard
gradient_circular_progress_indicator: ^0.0.4 copied to clipboard

Circular Progress Widget with gradient progress value color and optional background color.

Gradient Circular Progress Indicator #

A customizable circular progress widget for Flutter, designed to display progress using a gradient arc with an optional background color.

Usage #

Import the package: #

import 'package:gradient_circular_progress_indicator/gradient_circular_progress_indicator.dart';

Use the GradientCircularProgressIndicator widget in your Flutter app: #

GradientCircularProgressIndicator(
  progress: 0.75, // Specify the progress value between 0 and 1
  gradient: LinearGradient(
    colors: [Colors.blue, Colors.green],
    begin: Alignment.topLeft,
    end: Alignment.bottomRight,
  ),
  backgroundColor: Colors.grey, // Specify the background color
  child: Text('75%'), // Optional child widget
)

Parameters #

  • progress: A double value between 0 and 1 representing the progress.
  • gradient: A gradient used to color the progress arc.
  • backgroundColor: The background color behind the unfilled portion.
  • child: An optional child widget to place on top of the progress.
  • size: size of the widget
  • stroke: stroke width

output #

[output1][assets/output1.jpg]

Issues and Contributions #

Found a bug or have a feature request? Open an issue. Contributions are welcome!

License #

This project is licensed under the MIT License - see the LICENSE file for details.

Installation #

Add this line to your pubspec.yaml file:

dependencies:
  gradient_cicular_progress_indicator: ^0.0.4

Then run

flutter pub get

Author #

Dilip Yadav Connect with me on LinkedIn.

19
likes
160
points
1.31k
downloads

Publisher

verified publisherdilipyadav.xyz

Weekly Downloads

Circular Progress Widget with gradient progress value color and optional background color.

Repository

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on gradient_circular_progress_indicator