{"id":21395371,"url":"https://github.com/prajapatihet/flutter-walkthrough","last_synced_at":"2026-04-10T16:38:42.625Z","repository":{"id":232047445,"uuid":"783347391","full_name":"prajapatihet/Flutter-Walkthrough","owner":"prajapatihet","description":"Flutter-Walkthrough is a simple Flutter package that helps users create basic walkthrough screens with ease. Published on pub.dev, it offers a straightforward solution for onboarding new users into apps.","archived":false,"fork":false,"pushed_at":"2024-04-09T03:47:30.000Z","size":94,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-23T01:44:40.371Z","etag":null,"topics":["dart","dependency","flutter","library","package"],"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/prajapatihet.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}},"created_at":"2024-04-07T16:35:10.000Z","updated_at":"2024-12-17T13:03:30.000Z","dependencies_parsed_at":"2024-04-07T17:17:11.014Z","dependency_job_id":"0bd4f3f1-6190-4259-887b-28fe2c9ccdf4","html_url":"https://github.com/prajapatihet/Flutter-Walkthrough","commit_stats":null,"previous_names":["prajapatihet/flutter-walkthrough"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prajapatihet%2FFlutter-Walkthrough","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prajapatihet%2FFlutter-Walkthrough/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prajapatihet%2FFlutter-Walkthrough/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prajapatihet%2FFlutter-Walkthrough/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/prajapatihet","download_url":"https://codeload.github.com/prajapatihet/Flutter-Walkthrough/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243880714,"owners_count":20362825,"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","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","dependency","flutter","library","package"],"created_at":"2024-11-22T14:19:26.535Z","updated_at":"2026-04-10T16:38:42.570Z","avatar_url":"https://github.com/prajapatihet.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# new_walkthrough\n\nA new Flutter package for both android and iOS which helps developers in creating animated walkthrough of their app.\n\n### Show some :heart: and star the repo to support the project\n\n\u003c!-- ## Screenshots\n\n\u003cimg src=\"./imgs/ss1.png\" height=\"300em\" /\u003e \u003cimg src=\"./imgs/ss2.png\" height=\"300em\" /\u003e --\u003e\n\n## Usage\n\n[Example](https://github.com/prajapatihet/Flutter-Walkthrough/blob/main/example/example_app.dart)\n\nTo use this package :\n\n* add the dependency to your [pubspec.yaml](https://github.com/prajapatihet/Flutter-Walkthrough/blob/main/pubspec.yaml) file.\n\n```yaml\n  dependencies:\n    flutter:\n      sdk: flutter\n    new_walkthrough:\n```\n\n### How to use\n\n```dart\nclass TestScreen extends StatelessWidget {\n  \n  /*here we have a list of walkthroughs which we want to have, \n  each walkthrough have a title,content and an icon.\n  */\n  final List\u003cWalkthrough\u003e list = [\n    Walkthrough(\n      title: \"Title 1\",\n      content: \"Content 1\",\n      imageIcon: Icons.restaurant_menu,\n    ),\n    Walkthrough(\n      title: \"Title 2\",\n      content: \"Content 2\",\n      imageIcon: Icons.search,\n    ),\n    Walkthrough(\n      title: \"Title 3\",\n      content: \"Content 3\",\n      imageIcon: Icons.shopping_cart,\n    ),\n    Walkthrough(\n      title: \"Title 4\",\n      content: \"Content 4\",\n      imageIcon: Icons.verified_user,\n    ),\n  ];\n\n  @override\n  Widget build(BuildContext context) {\n    //here we need to pass the list and the route for the next page to be opened after this.\n    return new IntroScreen(\n      list,\n      new MaterialPageRoute(builder: (context) =\u003e new TestScreen()),\n    );\n  }\n}\n```\n# Pull Requests\n\nI welcome and encourage all pull requests. It usually will take me within 24-48 hours to respond to any issue or request. Here are some basic rules to follow to ensure timely addition of your request:\n\n1.  Match coding style (braces, spacing, etc.) This is best achieved using `Reformat Code` feature of Android Studio `CMD`+`Option`+`L` on Mac and `CTRL` + `ALT` + `L` on Linux + Windows .\n2.  If its a feature, bugfix, or anything please only change code to what you specify.\n3.  Please keep PR titles easy to read and descriptive of changes, this will make them easier to merge :)\n4.  Pull requests _must_ be made against `develop` branch. Any other branch (unless specified by the maintainers) will get rejected.\n5.  Check for existing [issues](https://github.com/prajapatihet/Flutter-Walkthrough/issues) first, before filing an issue.\n6.  Make sure you follow the set standard as all other projects in this repo do\n7.  Have fun!\n\n### Created \u0026 Maintained By\n\n[Hetkumar Prajapati](https://github.com/prajapatihet)\n\n# License\n\n    Copyright 2024 Hetkumar Prajapati\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n\n## Getting Started\n\nFor help getting started with Flutter, view our online [documentation](https://flutter.io/).\n\nFor help on editing package code, view the [documentation](https://flutter.io/developing-packages/).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprajapatihet%2Fflutter-walkthrough","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprajapatihet%2Fflutter-walkthrough","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprajapatihet%2Fflutter-walkthrough/lists"}