{"id":28376142,"url":"https://github.com/7span/flutter-gradient-progress-bar","last_synced_at":"2026-03-08T06:31:33.494Z","repository":{"id":49408050,"uuid":"512097242","full_name":"7span/flutter-gradient-progress-bar","owner":"7span","description":"A comprehensive Flutter package for both Android and iOS that provides beautiful, customisable progress indicators with gradient-filled and colourful circular designs.","archived":false,"fork":false,"pushed_at":"2025-05-28T13:31:31.000Z","size":263,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-03T00:31:19.657Z","etag":null,"topics":["dart","flutter"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/7span.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-07-09T04:59:17.000Z","updated_at":"2025-06-04T10:08:20.000Z","dependencies_parsed_at":"2025-06-03T00:05:05.090Z","dependency_job_id":null,"html_url":"https://github.com/7span/flutter-gradient-progress-bar","commit_stats":null,"previous_names":["urvashi-k-7span/gradient_progress_bar","7span/flutter-gradient-progress-bar"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/7span/flutter-gradient-progress-bar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7span%2Fflutter-gradient-progress-bar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7span%2Fflutter-gradient-progress-bar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7span%2Fflutter-gradient-progress-bar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7span%2Fflutter-gradient-progress-bar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/7span","download_url":"https://codeload.github.com/7span/flutter-gradient-progress-bar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7span%2Fflutter-gradient-progress-bar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30247328,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-08T05:41:50.788Z","status":"ssl_error","status_checked_at":"2026-03-08T05:41:39.075Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","flutter"],"created_at":"2025-05-30T00:05:34.187Z","updated_at":"2026-03-08T06:31:33.469Z","avatar_url":"https://github.com/7span.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flutter Progress Indicators\n\n![Pub Version](https://img.shields.io/badge/pub-v0.0.2-blue) ![Flutter Version](https://img.shields.io/badge/flutter-v3.3.1-blue) ![Dart Version](https://img.shields.io/badge/dart-v2.18.0-blue)\n\nA comprehensive Flutter package for both Android and iOS that provides beautiful, customizable progress indicators with gradient and colorful circular designs.\n\n## Features\n\n- **Colorful Circular Progress Indicator**: Multi-colored circular progress indicator with smooth animations\n- **Gradient Progress Bar**: Linear progress bar with customizable gradient colors\n- Cross-platform support (Android \u0026 iOS)\n- Smooth animations and transitions\n- Highly customizable color schemes\n\n## Screenshots\n\n| Component | Demo |\n|-----------|------|\n| **Gradient Indicator** | \u003cimg src=\"https://github.com/user-attachments/assets/4759dd4d-425c-4738-bf6d-67423f0849d0\" width=\"200\"\u003e |\n| **Circuler Indicator** | \u003cimg src=\"https://github.com/user-attachments/assets/13384a27-b716-4114-bfa3-35fd2d0f0dd7\" width=\"200\"\u003e |\n\n## Usage\n\n### Colorful Circular Progress Indicator\n\n```dart\nimport 'package:colorful_circular_progress_indicator/colorful_circular_progress_indicator.dart';\n\nclass CircularProgressExample extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return Scaffold(\n      body: Center(\n        child: ColorfulCircularProgressIndicator(\n          colors: [\n            Colors.red,\n            Colors.orange,\n            Colors.yellow,\n            Colors.green,\n            Colors.blue,\n            Colors.indigo,\n            Colors.purple,\n          ],\n          strokeWidth: 8.0,\n          radius: 50.0,\n          progress: 0.7,\n        ),\n      ),\n    );\n  }\n}\n```\n\n### Gradient Progress Bar\n\n```dart\nimport 'package:gradient_progress_bar/gradient_progress_bar.dart';\n\nclass GradientProgressExample extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return Scaffold(\n      body: Center(\n        child: Column(\n          mainAxisAlignment: MainAxisAlignment.center,\n          children: const \u003cWidget\u003e[\n            GradientProgressIndicator([\n              Color(0xffF68270),\n              Color(0xffF1C358),\n              Color(0xffEFDE62),\n              Color(0xffE5F3BE),\n              Color(0xffCDE8F1),\n              Color(0xffDDC5EE),\n              Color(0xffF2E0F9),\n            ], 0.8)\n          ],\n        ),\n      ),\n    );\n  }\n}\n```\n\n### Complete Example\n\n```dart\nimport 'package:flutter/material.dart';\nimport 'package:colorful_circular_progress_indicator/colorful_circular_progress_indicator.dart';\nimport 'package:gradient_progress_bar/gradient_progress_bar.dart';\n\nclass ProgressIndicatorsDemo extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return Scaffold(\n      appBar: AppBar(\n        title: Text('Progress Indicators Demo'),\n      ),\n      body: Center(\n        child: Column(\n          mainAxisAlignment: MainAxisAlignment.spaceEvenly,\n          children: [\n            // Colorful Circular Progress Indicator\n            ColorfulCircularProgressIndicator(\n              colors: [\n                Colors.red,\n                Colors.orange,\n                Colors.yellow,\n                Colors.green,\n                Colors.blue,\n                Colors.indigo,\n                Colors.purple,\n              ],\n              strokeWidth: 8.0,\n              radius: 50.0,\n              progress: 0.7,\n            ),\n            \n            // Gradient Progress Bar\n            Padding(\n              padding: EdgeInsets.symmetric(horizontal: 20),\n              child: GradientProgressIndicator([\n                Color(0xffF68270),\n                Color(0xffF1C358),\n                Color(0xffEFDE62),\n                Color(0xffE5F3BE),\n                Color(0xffCDE8F1),\n                Color(0xffDDC5EE),\n                Color(0xffF2E0F9),\n              ], 0.8),\n            ),\n          ],\n        ),\n      ),\n    );\n  }\n}\n```\n\n## API Reference\n\n### ColorfulCircularProgressIndicator\n\n| Parameter | Type | Description | Default |\n|-----------|------|-------------|---------|\n| `colors` | `List\u003cColor\u003e` | List of colors for the progress indicator | Required |\n| `strokeWidth` | `double` | Width of the progress stroke | `4.0` |\n| `radius` | `double` | Radius of the circular indicator | `20.0` |\n| `progress` | `double` | Progress value (0.0 to 1.0) | `0.0` |\n\n### GradientProgressIndicator\n\n| Parameter | Type | Description | Default |\n|-----------|------|-------------|---------|\n| `colors` | `List\u003cColor\u003e` | List of gradient colors | Required |\n| `progress` | `double` | Progress value (0.0 to 1.0) | Required |\n| `height` | `double` | Height of the progress bar | `8.0` |\n| `borderRadius` | `double` | Border radius of the progress bar | `4.0` |\n\n## Examples\n\nFor more detailed examples, check out:\n- [Progress Example](https://github.com/urvashik-7span/gradient_progress_bar/tree/main/example)\n\n## Contributors\n\n### Gradient Progress Bar\n**[Urvashi Kharecha](https://www.linkedin.com/in/urvashi-kharecha/)**\n\u003ca href=\"https://www.linkedin.com/in/urvashi-kharecha-23a544114/\" target=\"blank\"\u003e\u003cimg align=\"center\" src=\"https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/linked-in-alt.svg\" alt=\"linedin_logo\" height=\"18\" width=\"28\" /\u003e\u003c/a\u003e\n\n### Colorful Circular Progress Indicator\n**[Ruchit Soni](https://www.linkedin.com/in/ruchit-soni/)**\n\u003ca href=\"https://www.linkedin.com/in/ruchit-soni-3741191b2/\" target=\"blank\"\u003e\u003cimg align=\"center\" src=\"https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/linked-in-alt.svg\" alt=\"linedin_logo\" height=\"18\" width=\"28\" /\u003e\u003c/a\u003e\n\n## Issues \u0026 Support\n\nHaving issues? File them here:\n- [Issues](https://github.com/7span/flutter-gradient-progress-bar/issues)\n\n## Contributing\n\n**🤘🏻 Great!** We welcome contributions to both packages.\n\n### For Progress Bar:\n1. Fork the [Repository](https://github.com/7span/flutter-gradient-progress-bar)\n2. Update Code\n3. Write a meaningful Commit Message\n4. Send a PR\n\nThat's all you need to contribute!\n\n## License\n\nThis project is licensed under the MIT License - see the individual package repositories for details.\n\n## Changelog\n\nSee [CHANGELOG.md](CHANGELOG.md) for details about changes in each version.\n\n---\n\n**Made with ❤️ by the Flutter community**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F7span%2Fflutter-gradient-progress-bar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F7span%2Fflutter-gradient-progress-bar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F7span%2Fflutter-gradient-progress-bar/lists"}