{"id":16344950,"url":"https://github.com/ericdallo/ripple_effect","last_synced_at":"2025-08-27T19:05:08.085Z","repository":{"id":56838249,"uuid":"252038168","full_name":"ericdallo/ripple_effect","owner":"ericdallo","description":"A Flutter pub package for add a ripple effect on your app","archived":false,"fork":false,"pushed_at":"2022-12-15T04:05:11.000Z","size":200,"stargazers_count":11,"open_issues_count":1,"forks_count":9,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-18T15:54:56.091Z","etag":null,"topics":["dart","flutter","navigation","package","pub","ripple","ripple-animation","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/ericdallo.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}},"created_at":"2020-04-01T01:13:32.000Z","updated_at":"2025-02-16T03:36:11.000Z","dependencies_parsed_at":"2023-01-29T02:01:10.650Z","dependency_job_id":null,"html_url":"https://github.com/ericdallo/ripple_effect","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericdallo%2Fripple_effect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericdallo%2Fripple_effect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericdallo%2Fripple_effect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericdallo%2Fripple_effect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ericdallo","download_url":"https://codeload.github.com/ericdallo/ripple_effect/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245040235,"owners_count":20551297,"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","flutter","navigation","package","pub","ripple","ripple-animation","widget"],"created_at":"2024-10-11T00:29:31.798Z","updated_at":"2025-03-23T00:32:42.441Z","avatar_url":"https://github.com/ericdallo.png","language":"Dart","readme":"[![Pub Package](https://img.shields.io/pub/v/ripple_effect.svg?color=0175C2)](https://pub.dev/packages/ripple_effect)\n[![GitHub Actions](https://github.com/ericdallo/ripple_effect/workflows/Tests/badge.svg)](https://github.com/ericdallo/ripple_effect/actions)\n\n# ripple_effect\n\nA easy way to achieve a ripple effect on you flutter app.\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/7820865/78139282-a2e49c00-73fe-11ea-9159-7ea019c87d0e.gif\" width=\"240\"\u003e\n\u003c/p\u003e\n\n## Usage\n\nFirst you need to wrap your page/Scaffold with the `RipplePage` widget, the ripple efect will growth until this widget. Then \nwrap with the `RippleEffect` where the animation should begin. When the animation should begin, call the `RippleEffect.start` method passing you callback method(often navigate to other page).\n\nThe `RipplePage` and `RippleEffect` widgets need their `GlobalKey`s respectively to work.\n\n## Example\n\n```dart\nclass Stateless extends StatelessWidget {\n  final pageKey = RipplePage.createGlobalKey();\n  final effectKey = RippleEffect.createGlobalKey();\n  \n  @override\n  Widget build(BuildContext context) {\n    return RipplePage(\n      child: Scaffold(\n        body: Center(),\n        floatingActionButton: RippleEffect(\n          pageKey: pageKey,\n          effectKey: effectKey,\n          color: Colors.blue,\n          child: FloatingActionButton(\n            backgroundColor: Colors.blue,\n            onPressed: () =\u003e\n                 RippleEffect.start(effectKey, () =\u003e toNextPage(context)),\n            child: Icon(Icons.arrow_back),\n          ),\n        )\n      ),\n    );\n  }\n}\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericdallo%2Fripple_effect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fericdallo%2Fripple_effect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericdallo%2Fripple_effect/lists"}