{"id":32284991,"url":"https://github.com/roshannahak/step_tracker","last_synced_at":"2026-02-22T18:01:55.095Z","repository":{"id":59159617,"uuid":"535622752","full_name":"Roshannahak/step_tracker","owner":"Roshannahak","description":"A Flutter step_tracker plugin is collect information from user and display progress through a sequence of steps. this plugin also have privilege for fully customization from user side. like flipkart, amazon, myntra, meesho.","archived":false,"fork":false,"pushed_at":"2025-03-05T07:01:44.000Z","size":227,"stargazers_count":10,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-05T08:19:17.030Z","etag":null,"topics":["dart","delivery","delivery-application","delivery-service","flutter","flutter-apps","flutter-package","packages","stepper","tracker","widget-library"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Roshannahak.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":"2022-09-12T10:50:37.000Z","updated_at":"2025-03-05T07:01:47.000Z","dependencies_parsed_at":"2025-03-05T08:19:08.861Z","dependency_job_id":"6871f337-6c1e-443d-a163-4ab65f68cb10","html_url":"https://github.com/Roshannahak/step_tracker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Roshannahak/step_tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Roshannahak%2Fstep_tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Roshannahak%2Fstep_tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Roshannahak%2Fstep_tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Roshannahak%2Fstep_tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Roshannahak","download_url":"https://codeload.github.com/Roshannahak/step_tracker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Roshannahak%2Fstep_tracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29721054,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T15:10:41.462Z","status":"ssl_error","status_checked_at":"2026-02-22T15:10:04.636Z","response_time":110,"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","delivery","delivery-application","delivery-service","flutter","flutter-apps","flutter-package","packages","stepper","tracker","widget-library"],"created_at":"2025-10-23T01:40:56.368Z","updated_at":"2026-02-22T18:01:55.084Z","avatar_url":"https://github.com/Roshannahak.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# step_tracker plugin\n\nA Flutter step_tracker plugin is collect information from user and display progress through a sequence of steps. this plugin also have privilege for fully customization from user side.\n\n## Usage\n\n#### Add dependency\n\nPlease check the latest version before installation. If there is any problem with the new version, please use the previous version.\n\n```yaml\ndependencies:\n  flutter:\n    sdk: flutter\n  # add step_tracker\n  step_tracker: ^{latest version}\n```\n\n#### Add the following imports to your Dart code\n\n```dart\nimport 'package:step_tracker/step_tracker.dart';\n```\n\n#### How to use\nSimply create a ```step_tracker``` widget, and pass the required params and List of ```steps[]```:\n\n```dart\nStepTracker(\n  dotSize: 10,\n  circleIconSize: 24,\n  showIcon: true,\n  selectedColor: Colors.green,\n  unSelectedColor: Colors.red,\n  stepTrackerType: StepTrackerType.dotVertical,\n  pipeSize: 30,\n  steps: [\n    Steps(title: Text(\"your text\"), state: TrackerState.none),\n    Steps(title: Text(\"your text\"), state: TrackerState.complete),\n    Steps(title: Text(\"your text\"), state: TrackerState.disabled),\n  ],\n)\n```\n\n##### Change tracker state\nHere we have three state on Steps Widget ```complete``` ```disabled``` and one more is ```none``` which is default set. Following attributes are below:\n\n```dart\nstate: TrackerState.none\nstate: TrackerState.complete\nstate: TrackerState.disable\n```\n\u003cimg src=\"https://github.com/Roshannahak/step_tracker/blob/main/screenshots/s1.jpg?raw=true\" width=\"200\"/\u003e  \u003cimg src=\"https://github.com/Roshannahak/step_tracker/blob/main/screenshots/s4.jpg?raw=true\" width=\"200\"/\u003e\n\n##### Types of tracker\nIn this widget, currently we have two types of tracker ```indexedVertical``` \u0026 ```dotVertical```, default set is ```dotVertical```.\n\n```dart\nstepTrackerType: StepTrackerType.indexedVertical\nstepTrackerType: StepTrackerType.dotVertical\nstepTrackerType: StepTrackerType.indexedHorizontal\nstepTrackerType: StepTrackerType.dotHorizontal\n```\n\u003cimg src=\"https://github.com/Roshannahak/step_tracker/blob/main/screenshots/s2.jpg?raw=true\" width=\"200\"/\u003e  \u003cimg src=\"https://github.com/Roshannahak/step_tracker/blob/main/screenshots/s3.jpg?raw=true\" width=\"200\"/\u003e \u003cimg src=\"https://github.com/Roshannahak/step_tracker/blob/dev/screenshots/s5.png?raw=true\" width=\"200\"/\u003e\n\n##### Icon Stepper Guide\nTo use the icon stepper with `StepTrackerType.indexedVertical` and `StepTrackerType.indexedHorizontal`:\n\n- Set `showIcon: true`\n- Provide the image URL in the `iconAsset` property of `Steps`\n\n```dart\nStepTracker(\n  type: StepTrackerType.indexedVertical, //StepTrackerType.indexedHorizontal\n  showIcon: true,\n  circleIconSize: 24;\n  steps: [\n    Steps(title: \"Order Placed\", description: \"description text\", iconAsset: \"assets/step1.png\"),\n    Steps(title: \"Shipped\", iconAsset: \"assets/step2.png\"),\n    Steps(title: \"Delivered\", iconAsset: \"assets/step3.png\"),\n  ],\n)\n```\n\u003cimg src=\"https://github.com/Roshannahak/step_tracker/blob/dev/screenshots/s6.png?raw=true\" width=\"200\"/\u003e \u003cimg src=\"https://github.com/Roshannahak/step_tracker/blob/dev/screenshots/s7.png?raw=true\" width=\"200\"/\u003e \u003cimg src=\"https://github.com/Roshannahak/step_tracker/blob/dev/screenshots/s8.png?raw=true\" width=\"200\"/\u003e\n\n#### Feedback\n* Please raise an issue \u003ca href = \"https://github.com/Roshannahak/step_tracker/issues\"\u003ehere\u003c/a\u003e.\n* For more information please connect with me.\n\n#### Contect with me\n\u003ca href=\"https://github.com/Roshannahak\"\u003e\u003cimg src= \"https://img.icons8.com/ios-glyphs/344/github.png\" width = \"40px\"/\u003e\u003c/a\u003e \u003ca href=\"https://www.linkedin.com/in/roshan-nahak-a15833193\"\u003e\u003cimg src= \"https://img.icons8.com/color/344/linkedin.png\" width = \"40px\"/\u003e\u003c/a\u003e \u003ca href=\"mailto:roshannahakofficial@gmail.com\"\u003e\u003cimg src= \"https://img.icons8.com/color/344/gmail-new.png\" width = \"40px\"/\u003e\u003c/a\u003e \u003ca href=\"https://www.facebook.com/roshan.nahak.16/\"\u003e\u003cimg src= \"https://img.icons8.com/color/344/facebook-new.png\" width = \"40px\"/\u003e\u003c/a\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froshannahak%2Fstep_tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froshannahak%2Fstep_tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froshannahak%2Fstep_tracker/lists"}