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

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

example/example.md

Examples #

Here's an example of how you can use the GradientCircularProgressIndicator widget

import 'package:flutter/material.dart'; import 'package:custom_circular_progress/custom_circular_progress.dart';

void main() { runApp(MyApp()); }

class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Circular Progress Example', home: Scaffold( appBar: AppBar( title: Text('Circular Progress Example'), ), body: Center( child: CustomCircularProgress( progress: 0.6, gradient: RadialGradient( colors: [Colors.blue, Colors.purple], ), backgroundColor: Colors.grey, child: Text('60%'), ), ), ), ); } }

14
likes
160
pub points
90%
popularity

Publisher

unverified uploader

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