{"id":32270001,"url":"https://github.com/amir14a/square_progress_indicator","last_synced_at":"2026-02-22T01:06:37.544Z","repository":{"id":167025611,"uuid":"641852476","full_name":"amir14a/square_progress_indicator","owner":"amir14a","description":"A library to create fully customizable square or rectangle progress indicators like native flutter CircularProgressIndicator widget!","archived":false,"fork":false,"pushed_at":"2025-03-23T01:55:14.000Z","size":8748,"stargazers_count":12,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-22T22:37:05.951Z","etag":null,"topics":["dart","flutter","flutter-package","flutter-ui","flutter-widget","pubdev"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/square_progress_indicator","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amir14a.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}},"created_at":"2023-05-17T09:50:20.000Z","updated_at":"2025-05-06T06:46:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"feb56ae5-dab5-4b9c-89cf-8390e6bc0810","html_url":"https://github.com/amir14a/square_progress_indicator","commit_stats":null,"previous_names":["amir14a/square_progress_indicator"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/amir14a/square_progress_indicator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amir14a%2Fsquare_progress_indicator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amir14a%2Fsquare_progress_indicator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amir14a%2Fsquare_progress_indicator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amir14a%2Fsquare_progress_indicator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amir14a","download_url":"https://codeload.github.com/amir14a/square_progress_indicator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amir14a%2Fsquare_progress_indicator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29701987,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T23:35:04.139Z","status":"ssl_error","status_checked_at":"2026-02-21T23:35:03.832Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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","flutter-package","flutter-ui","flutter-widget","pubdev"],"created_at":"2025-10-22T22:31:34.461Z","updated_at":"2026-02-22T01:06:37.538Z","avatar_url":"https://github.com/amir14a.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"Create fully customizable square or rectangle progress indicators like native flutter CircularProgressIndicator widget!\n\n## Features\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/amir14a/square_progress_indicator/blob/main/example/screenshots/screenshot-new.gif?raw=true\" width=\"350\" title=\"Full example of SquareProgressIndicator\"\u003e\n\u003c/p\u003e\n\n## Live demo\n\nYou can check the example project web export on this link:\n[https://amir14a.github.io/square_progress_indicator/](https://amir14a.github.io/square_progress_indicator/)\nThanks to Github!❤️\n\n## Usage\n\nSimple usage:\n```dart\nconst SquareProgressIndicator(),\n```\n\nCustomize usage:\n```dart\nSquareProgressIndicator(\n    value: _value,\n    width: 100,\n    height: 100,\n    borderRadius: 0,\n    startPosition: StartPosition.leftCenter,\n    strokeCap: StrokeCap.square,\n    clockwise: true,\n    color: Colors.purple,\n    emptyStrokeColor: Colors.purple.withOpacity(.5),\n    strokeWidth: 16,\n    emptyStrokeWidth: 16,\n    strokeAlign: SquareStrokeAlign.center,\n    child: Text(\"${(_value * 100).toStringAsFixed(0)}%\"),\n),\n```\n\n## Additional information\n|    **Parameter**   |      **Type**     |                 **Default**                 |                                                                                     **Info**                                                                                    |\n|:------------------:|:-----------------:|:-------------------------------------------:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|\n|       `value`      |      double?      |                    `null`                   | The value of the progress, it should be between 0 and 1. don't pass it to use Indeterminate mode                                                                                |\n|       `width`      |       double      |                     `38`                    | The width of rectangle that the progress line is drawn around it.                                                                                                               |\n|      `height`      |       double      |                     `38`                    | The height of rectangle that the progress line is drawn around it.                                                                                                              |\n|   `borderRadius`   |       double      |                     `8`                     | The border radius of the rectangle, it is applied to all four corners.                                                                                                          |\n|       `color`      |       Color?      |        `progressIndicatorTheme.color`       | The color of the progress line.                                                                                                                                                 |\n| `emptyStrokeColor` |       Color?      | `progressIndicatorTheme.circularTrackColor` | The color of the line behind the progress line which show for reminding progress.                                                                                               |\n|    `strokeWidth`   |       double      |                     `4`                     | The width of the progress line.                                                                                                                                                 |\n| `emptyStrokeWidth` |       double      |                     `4`                     | The width of the line behind the progress line which show for reminding progress.                                                                                               |\n|     `clockwise`    |      boolean      |                    `true`                   | The direction of turn of progress line, if you pass false, the progress line will be reversed, default value is true.                                                           |\n|   `startPosition`  |       double      |       `0` (`StartPosition.topCenter`)       | Start position of progress line relative to the topCenter, you can pass a value from [StartPosition] class or custom double value you need.                                     |\n|    `strokeAlign`   | SquareStrokeAlign |          `SquareStrokeAlign.inside`         | The stroke align of the progress line, pass a value from [SquareStrokeAlign] and read it's documents. see: https://api.flutter.dev/flutter/painting/BorderSide/strokeAlign.html |\n|     `strokeCap`    |     StrokeCap?    |              `StrokeCap.round`              | The stroke cap of the progress line and empty line, see: https://api.flutter.dev/flutter/dart-ui/StrokeCap.html                                                                 |\n|       `child`      |      Widget?      |                    `null`                   | The child widget, it can be a text or everything you need.                                                                                                                      |\n\nFeel free to create issue or pull requests in [github repository](https://github.com/amir14a/square_progress_indicator)!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famir14a%2Fsquare_progress_indicator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famir14a%2Fsquare_progress_indicator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famir14a%2Fsquare_progress_indicator/lists"}