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

Flutter Widget that shows Colorful Circular Progress Indicator with multiple colors.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Flutter',
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(
          title: const Text('ColorfulCircularProgressIndicator'),
        ),
        body: const Center(
            child: ColorfulCircularProgressIndicator(
          colors: [Colors.blue, Colors.red, Colors.amber, Colors.green],
          strokeWidth: 5,
          indicatorHeight: 40,
          indicatorWidth: 40,
        )),
      ),
    );
  }
}
13
likes
160
points
171
downloads

Publisher

verified publisher7span.com

Weekly Downloads

Flutter Widget that shows Colorful Circular Progress Indicator with multiple colors.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on colorful_circular_progress_indicator