{"id":32280505,"url":"https://github.com/akacokafor/flutter_rave","last_synced_at":"2026-02-22T01:36:47.401Z","repository":{"id":52680933,"uuid":"190194254","full_name":"akacokafor/flutter_rave","owner":"akacokafor","description":"Rave by Flutterwave","archived":false,"fork":false,"pushed_at":"2021-04-21T09:32:21.000Z","size":662,"stargazers_count":7,"open_issues_count":6,"forks_count":24,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-23T00:44:27.712Z","etag":null,"topics":["flutter","flutterwave","flutterwave-rave"],"latest_commit_sha":null,"homepage":null,"language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/akacokafor.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":"2019-06-04T12:12:02.000Z","updated_at":"2024-05-21T03:36:38.000Z","dependencies_parsed_at":"2022-08-21T15:40:33.854Z","dependency_job_id":null,"html_url":"https://github.com/akacokafor/flutter_rave","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/akacokafor/flutter_rave","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akacokafor%2Fflutter_rave","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akacokafor%2Fflutter_rave/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akacokafor%2Fflutter_rave/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akacokafor%2Fflutter_rave/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akacokafor","download_url":"https://codeload.github.com/akacokafor/flutter_rave/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akacokafor%2Fflutter_rave/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29703227,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T23:35:04.139Z","status":"ssl_error","status_checked_at":"2026-02-21T23:35:03.832Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","flutterwave","flutterwave-rave"],"created_at":"2025-10-23T00:44:27.658Z","updated_at":"2026-02-22T01:36:47.395Z","avatar_url":"https://github.com/akacokafor.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rave by Flutterwave Plugin for Flutter\n\n[![pub package](https://img.shields.io/pub/v/flutter_rave.svg)](https://pub.dartlang.org/packages/flutter_rave)\n\nA Flutter plugin for making payments via Rave by Flutterwave Payment Gateway. Fully\nsupports Android and iOS.\n\n\u003cdiv style=\"text-align: center\"\u003e\n    \u003ctable\u003e\n        \u003ctr\u003e\n            \u003ctd style=\"text-align: center\"\u003e\n                \u003cimg src=\"./example/s1.png\" height=\"400\" /\u003e\n            \u003c/td\u003e\n            \u003ctd style=\"text-align: center\"\u003e\n                \u003cimg src=\"./example/s2.png\" height=\"400\" /\u003e\n            \u003c/td\u003e\n        \u003c/tr\u003e\n    \u003c/table\u003e\n\u003c/div\u003e\n\n\n## Installation\nTo use this plugin, add `flutter_rave` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/).\n\nThen initialize the plugin preferably in the `initState` of your widget.\n\n``` dart\nimport 'package:flutter_rave/flutter_rave.dart';\n\nclass _MyHomePageState extends State\u003cMyHomePage\u003e {\n  @override\n  Widget build(BuildContext context) {\n    return Scaffold(\n      appBar: AppBar(\n        title: Text(widget.title),\n      ),\n      body: Builder(\n        builder: (context) =\u003e SingleChildScrollView(\n              child: Column(\n                mainAxisAlignment: MainAxisAlignment.start,\n                children: \u003cWidget\u003e[\n                  Text(\n                    'Pay Me',\n                  ),\n                  FlatButton.icon(\n                    onPressed: () {\n                      _pay(context);\n                    },\n                    icon: Icon(Icons.email),\n                    label: Text(\"Pay\"),\n                  ),\n                ],\n              ),\n            ),\n      ),\n    );\n  }\n\n  _pay(BuildContext context) {\n    final _rave = RaveCardPayment(\n      isDemo: true,\n      encKey: \"c53e399709de57d42e2e36ca\",\n      publicKey: \"FLWPUBK-d97d92534644f21f8c50802f0ff44e02-X\",\n      transactionRef: \"SCH${DateTime.now().millisecondsSinceEpoch}\",\n      amount: 100,\n      email: \"demo1@example.com\",\n      onSuccess: (response) {\n        print(\"$response\");\n        print(\"Transaction Successful\");\n\n        if (mounted) {\n          Scaffold.of(context).showSnackBar(\n            SnackBar(\n              content: Text(\"Transaction Sucessful!\"),\n              backgroundColor: Colors.green,\n              duration: Duration(\n                seconds: 5,\n              ),\n            ),\n          );\n        }\n      },\n      onFailure: (err) {\n        print(\"$err\");\n        print(\"Transaction failed\");\n      },\n      onClosed: () {\n        print(\"Transaction closed\");\n      },\n      context: context,\n    );\n\n    _rave.process();\n  }\n}\n```\n\nNo other configuration required\u0026mdash;the plugin works out of the box.\n\n## Running Example project\nFor help getting started with Flutter, view the online [documentation](https://flutter.io/).\n\nAn [example project](https://github.com/akacokafor/flutter_rave/tree/master/example) has been provided in this plugin.\nClone this repo and navigate to the **example** folder. Open it with a supported IDE or execute `flutter run` from that folder in terminal.\n\n## Contributing, Issues and Bug Reports\nThe project is open to public contribution. Please feel very free to contribute.\nExperienced an issue or want to report a bug? Please, [report it here](https://github.com/akacokafor/flutter_rave/issues). Remember to be as descriptive as possible.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakacokafor%2Fflutter_rave","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakacokafor%2Fflutter_rave","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakacokafor%2Fflutter_rave/lists"}