{"id":22015662,"url":"https://github.com/iconica-development/flutter_introduction_widget","last_synced_at":"2025-07-23T09:32:50.854Z","repository":{"id":59251838,"uuid":"536136947","full_name":"Iconica-Development/flutter_introduction_widget","owner":"Iconica-Development","description":"Flutter Introduction Widget to show multiple introduction pages for first time app users","archived":true,"fork":false,"pushed_at":"2023-11-04T16:29:17.000Z","size":12499,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-23T09:13:23.598Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/Iconica-Development.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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-13T13:21:54.000Z","updated_at":"2024-07-09T07:30:46.000Z","dependencies_parsed_at":"2024-11-30T04:39:22.959Z","dependency_job_id":null,"html_url":"https://github.com/Iconica-Development/flutter_introduction_widget","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/Iconica-Development/flutter_introduction_widget","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Iconica-Development%2Fflutter_introduction_widget","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Iconica-Development%2Fflutter_introduction_widget/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Iconica-Development%2Fflutter_introduction_widget/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Iconica-Development%2Fflutter_introduction_widget/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Iconica-Development","download_url":"https://codeload.github.com/Iconica-Development/flutter_introduction_widget/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Iconica-Development%2Fflutter_introduction_widget/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266655235,"owners_count":23963552,"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-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["component","dart","flutter","flutter-apps"],"created_at":"2024-11-30T04:27:29.732Z","updated_at":"2025-07-23T09:32:50.178Z","avatar_url":"https://github.com/Iconica-Development.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![pub package](https://img.shields.io/pub/v/flutter_introduction_widget.svg)](https://github.com/Iconica-Development) [![Build status](https://img.shields.io/github/workflow/status/Iconica-Development/flutter_introduction_widget/CI)](https://github.com/Iconica-Development/flutter_introduction_widget/actions/new) [![style: effective dart](https://img.shields.io/badge/style-effective_dart-40c4ff.svg)](https://github.com/tenhobi/effective_dart) \n\n# Introduction Widget\nFlutter Introduction Widget for showing a list of introduction pages on a single scrollable page or horizontal pageview.\n\n![Introduction GIF](flutter_introduction_widget.gif)\n\n## Setup\n\nTo use this package, add `flutter_introduction_widget` as a dependency in your pubspec.yaml file.\n\n## How to use\n\nSimple way to use the introduction widget:\n```dart\nIntroductionScreen(\n    options: IntroductionOptions(\n        pages: [\n            IntroductionPage(\n                title: const Text('First page'),\n                text: const Text('Wow a page'),\n                graphic: const FlutterLogo(),\n            ),\n            IntroductionPage(\n                title: const Text('Second page'),\n                text: const Text('Another page'),\n                graphic: const FlutterLogo(),\n            ),\n            IntroductionPage(\n                title: const Text('Third page'),\n                text: const Text('The final page of this app'),\n                graphic: const FlutterLogo(),\n                backgroundImage: const AssetImage(\n                  'assets/flutter_introduction_background.jpeg'),\n            ),\n        ],\n        introductionTranslations: const IntroductionTranslations(\n            skipButton: 'Skip it!',\n            nextButton: 'Next',\n            previousButton: 'Previous',\n            finishButton: 'Finish',\n        ),\n        buttonMode: IntroductionScreenButtonMode.text,\n        buttonBuilder: (context, onPressed, child) =\u003e\n            ElevatedButton(onPressed: onPressed, child: child),\n    ),\n    onComplete: () {\n        debugPrint('We completed the cycle');\n    },\n),\n``` \n\nSee the [Example Code](example/lib/main.dart) for an example on how to use this package.\n\n## Issues\n\nPlease file any issues, bugs or feature request as an issue on our [GitHub](https://github.com/Iconica-Development/flutter_introduction_widget) page. Commercial support is available if you need help with integration with your app or services. You can contact us at [support@iconica.nl](mailto:support@iconica.nl).\n\n## Want to contribute\n\nIf you would like to contribute to the plugin (e.g. by improving the documentation, solving a bug or adding a cool new feature), please carefully review our [contribution guide](./CONTRIBUTING.md) and send us your [pull request](https://github.com/Iconica-Development/flutter_introduction_widget/pulls).\n\n## Author\n\nThis `flutter_introduction_widget` for Flutter is developed by [Iconica](https://iconica.nl). You can contact us at \u003csupport@iconica.nl\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ficonica-development%2Fflutter_introduction_widget","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ficonica-development%2Fflutter_introduction_widget","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ficonica-development%2Fflutter_introduction_widget/lists"}