{"id":18910130,"url":"https://github.com/cretezy/flutter_fadein","last_synced_at":"2025-07-10T18:34:09.763Z","repository":{"id":34876986,"uuid":"186309133","full_name":"Cretezy/flutter_fadein","owner":"Cretezy","description":"Simple Flutter widget to fade-in your widgets once they are mounted","archived":false,"fork":false,"pushed_at":"2025-03-16T03:39:28.000Z","size":58,"stargazers_count":9,"open_issues_count":1,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-15T06:47:05.540Z","etag":null,"topics":["fadein","flutter"],"latest_commit_sha":null,"homepage":null,"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/Cretezy.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,"zenodo":null}},"created_at":"2019-05-12T22:06:30.000Z","updated_at":"2025-03-16T03:39:33.000Z","dependencies_parsed_at":"2025-04-15T06:41:26.523Z","dependency_job_id":null,"html_url":"https://github.com/Cretezy/flutter_fadein","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/Cretezy/flutter_fadein","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cretezy%2Fflutter_fadein","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cretezy%2Fflutter_fadein/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cretezy%2Fflutter_fadein/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cretezy%2Fflutter_fadein/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Cretezy","download_url":"https://codeload.github.com/Cretezy/flutter_fadein/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cretezy%2Fflutter_fadein/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264631211,"owners_count":23640940,"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":["fadein","flutter"],"created_at":"2024-11-08T09:41:15.901Z","updated_at":"2025-07-10T18:34:09.721Z","avatar_url":"https://github.com/Cretezy.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flutter Fade-In [![pub package](https://img.shields.io/pub/v/flutter_fadein.svg)](https://pub.dartlang.org/packages/flutter_fadein)\n\nSimple Flutter widget to fade-in your widgets once they are mounted.\n\nSupports Material \u0026 Cupertino widgets.\n\nRequired Dart \u003e=2.12 (has null-safety support).\n\n[Pub](https://pub.dartlang.org/packages/flutter_fadein) - [API Docs](https://pub.dartlang.org/documentation/flutter_fadein/latest/) - [GitHub](https://github.com/Cretezy/flutter_fadein)\n\n## Install\n\nAdd this as a dependency in your `pubspec.yaml`:\n\n```yaml\ndependencies:\n  flutter_fadein: ^2.0.0\n```\n\n## Usage\n\n```dart\nimport 'package:flutter_fadein/flutter_fadein.dart';\n\nFadeIn(\n  child: Text(\"This will be faded-in!\"),\n  // Optional paramaters\n  duration: Duration(milliseconds: 250),\n  delay: Duration(milliseconds: 250)\n  curve: Curves.easeIn,\n)\n```\n\n### With Controller\n\nIf you need more control over the animation timing, you can use `FadeInController`:\n\n```dart\nfinal controller = FadeInController();\n\n// ...\n\nFadeIn(\n  child: Text(\"This will be faded-in with a controller\"),\n  controller: controller,\n)\n\n// ...\n\ncontroller.fadeIn();\ncontroller.fadeOut();\n```\n\nUsing a controller with not automatically start. You can make it automatically start using `FadeInController(autoStart: true)`.\nNote that the `delay` parameter does not work while using a controller, and will therefore raise an exception.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcretezy%2Fflutter_fadein","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcretezy%2Fflutter_fadein","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcretezy%2Fflutter_fadein/lists"}