{"id":23828642,"url":"https://github.com/elrizwiraswara/flutter_steps","last_synced_at":"2026-03-02T08:09:51.001Z","repository":{"id":249937663,"uuid":"833028711","full_name":"elrizwiraswara/flutter_steps","owner":"elrizwiraswara","description":"A customizable widget that allows you to display a series of steps in a horizontal or vertical direction.","archived":false,"fork":false,"pushed_at":"2024-10-19T15:27:04.000Z","size":404,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T23:33:19.755Z","etag":null,"topics":["flutter-stepper","flutter-steps","stepper","steps","steps-widget"],"latest_commit_sha":null,"homepage":"","language":"Dart","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/elrizwiraswara.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":"2024-07-24T08:05:34.000Z","updated_at":"2024-12-30T13:35:20.000Z","dependencies_parsed_at":"2025-01-02T13:31:11.723Z","dependency_job_id":"fdf41a40-b494-4c91-a090-85bf3319f179","html_url":"https://github.com/elrizwiraswara/flutter_steps","commit_stats":null,"previous_names":["elrizwiraswara/flutter_steps"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/elrizwiraswara/flutter_steps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elrizwiraswara%2Fflutter_steps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elrizwiraswara%2Fflutter_steps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elrizwiraswara%2Fflutter_steps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elrizwiraswara%2Fflutter_steps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elrizwiraswara","download_url":"https://codeload.github.com/elrizwiraswara/flutter_steps/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elrizwiraswara%2Fflutter_steps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274026689,"owners_count":25209739,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["flutter-stepper","flutter-steps","stepper","steps","steps-widget"],"created_at":"2025-01-02T13:31:05.477Z","updated_at":"2026-03-02T08:09:50.951Z","avatar_url":"https://github.com/elrizwiraswara.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flutter Steps\n\nThe Flutter Steps package is a customizable widget that allows you to display a series of steps in a horizontal or vertical direction. This package can be used for creating step indicators for onboarding processes, progress tracking, or any other multi-step process in your Flutter application.\n\n## Key Features\n\n- **Flexible Direction**: Display steps horizontally or vertically based on your layout needs.\n- **Customizable Appearance**: Adjust colors, fonts, and sizes for active and inactive steps, titles, and subtitles.\n- **Step Line Options**: Show or hide the line connecting steps, with options for continuous or dashed lines.\n- **Step Counters**: Optionally display counters for each step.\n- **Interactive**: Supports showing subtitles and custom leading elements for active and inactive steps.\n\n\u003cbr/\u003e\n\u003cp align=\"left\"\u003e\n  \u003cimg src=\"https://github.com/elrizwiraswara/flutter_steps/raw/main/1.png\" alt=\"Image 1\" height=\"500\" style=\"margin-right: 10px;\"\u003e\n  \u003cimg src=\"https://github.com/elrizwiraswara/flutter_steps/raw/main/2.png\" alt=\"Image 2\" height=\"500\" style=\"margin-right: 10px;\"\u003e\n  \u003cimg src=\"https://github.com/elrizwiraswara/flutter_steps/raw/main/3.png\" alt=\"Image 2\" height=\"500\" style=\"margin-right: 10px;\"\u003e\n\u003c/p\u003e\n\n## Installation\n\nAdd the following to your `pubspec.yaml` file:\n\n```yaml\ndependencies:\n  flutter_steps: ^1.0.5\n```\n\nThen run `flutter pub get` to install the package.\n\n## Usage\n### Basic Usage\n\n```dart\nimport 'package:flutter/material.dart';\nimport 'package:flutter_steps/flutter_steps.dart';\n\nList\u003cSteps\u003e basicSteps = [\n  ...List.generate(\n    5,\n    (i) =\u003e Steps(\n      title: 'Title ${i + 1}',\n      subtitle: 'Subtitle',\n      isActive: i \u003c 2 ? true : false,\n    ),\n  )\n];\n\nclass MyApp extends StatelessWidget {\n  const MyApp({super.key});\n\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      home: Scaffold(\n        body: FlutterSteps(\n          steps: basicSteps,\n          titleFontSize: 12,\n          showSubtitle: false,\n        ),\n      ),\n    );\n  }\n}\n```\n\n## Example\nCheck out the [example](example) directory for a complete sample app demonstrating the use of the `flutter_steps` package.\n\n## License\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Support\n\n\u003ca href=\"https://trakteer.id/elrizwiraswara/tip\" target=\"_blank\"\u003e\u003cimg id=\"wse-buttons-preview\" src=\"https://cdn.trakteer.id/images/embed/trbtn-red-6.png?date=18-11-2023\" height=\"40\" style=\"border:0px;height:40px;margin-top:14px\" alt=\"Trakteer Saya\"\u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felrizwiraswara%2Fflutter_steps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felrizwiraswara%2Fflutter_steps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felrizwiraswara%2Fflutter_steps/lists"}