{"id":32268561,"url":"https://github.com/f2acode/pricing_cards","last_synced_at":"2026-02-22T01:05:59.156Z","repository":{"id":61974219,"uuid":"362979532","full_name":"f2acode/pricing_cards","owner":"f2acode","description":"Awesome pricing cards for you Flutter project 😎","archived":false,"fork":false,"pushed_at":"2023-03-17T16:56:31.000Z","size":226,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-19T23:17:53.508Z","etag":null,"topics":["card","flutter","flutter-package","flutter-packages","flutter-plugin","flutter-plugins","open-source"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/pricing_cards","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/f2acode.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":"2021-04-30T00:10:13.000Z","updated_at":"2024-03-21T17:52:17.000Z","dependencies_parsed_at":"2022-10-24T13:45:36.840Z","dependency_job_id":null,"html_url":"https://github.com/f2acode/pricing_cards","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/f2acode/pricing_cards","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f2acode%2Fpricing_cards","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f2acode%2Fpricing_cards/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f2acode%2Fpricing_cards/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f2acode%2Fpricing_cards/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/f2acode","download_url":"https://codeload.github.com/f2acode/pricing_cards/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f2acode%2Fpricing_cards/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29701980,"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":["card","flutter","flutter-package","flutter-packages","flutter-plugin","flutter-plugins","open-source"],"created_at":"2025-10-22T22:15:04.167Z","updated_at":"2026-02-22T01:05:59.149Z","avatar_url":"https://github.com/f2acode.png","language":"Dart","readme":"# Pricing cards\n\n[![pub package](https://img.shields.io/pub/v/pricing_cards?logo=dart\u0026label=stable\u0026style=flat-square)](https://pub.dev/packages/pricing_cards) [![GitHub license](https://img.shields.io/github/license/f2acode/pricing_cards?style=flat-square)](https://github.com/f2acode/pricing_cards/blob/master/LICENSE)\n\nAwesome pricing cards with custom style options for your flutter project.\n\nYou can give as **much cards you want** to this and **personalize the style of each one**.\n\n## Example\n\nThe example with all the parameters:\n\n\u003cimg src='https://raw.githubusercontent.com/f2acode/pricing_cards/master/example/flutter_01.png' width=300\u003e\n\nThe code of this:\n\n```dart\nColumn(\n    mainAxisAlignment: MainAxisAlignment.center,\n    children: [\n        PricingCards(\n            pricingCards: [\n                PricingCard(\n                title: 'Monthly',\n                price: '\\$ 9.99',\n                subPriceText: '\\/mo',\n                billedText: 'Billed monthly',\n                onPress: () {\n                    // make your business\n                },\n                ),\n                PricingCard(\n                title: 'Monthly',\n                price: '\\$ 59.99',\n                subPriceText: '\\/mo',\n                billedText: 'Billed anually',\n                mainPricing: true,\n                mainPricingHighlightText: 'Save money',\n                onPress: () {\n                    // make your business\n                },\n                )\n            ],\n        ),\n        SizedBox(height: 30),\n        PricingCards(\n            pricingCards: [\n                PricingCard(\n                title: 'Monthly',\n                price: '\\$ 9.99',\n                subPriceText: '\\/mo',\n                billedText: 'Billed monthly',\n                onPress: () {\n                    // make your business\n                },\n                cardColor: Colors.green,\n                priceStyle: TextStyle(\n                    fontSize: 32,\n                    fontWeight: FontWeight.bold,\n                    color: Colors.white,\n                ),\n                titleStyle: TextStyle(\n                    fontSize: 16,\n                    color: Colors.white,\n                ),\n                billedTextStyle: TextStyle(\n                    fontSize: 12,\n                    color: Colors.white,\n                ),\n                subPriceStyle: TextStyle(\n                    fontSize: 12,\n                    color: Colors.white,\n                ),\n                cardBorder: RoundedRectangleBorder(\n                    side: BorderSide(color: Colors.red, width: 4.0),\n                    borderRadius: BorderRadius.circular(8.0),\n                ),\n                ),\n                PricingCard(\n                title: 'Monthly',\n                price: '\\$ 59.99',\n                subPriceText: '\\/mo',\n                billedText: 'Billed anually',\n                mainPricing: true,\n                mainPricingHighlightText: 'Save money',\n                onPress: () {\n                    // make your business\n                },\n                cardColor: Colors.blue,\n                priceStyle: TextStyle(\n                    fontSize: 32,\n                    fontWeight: FontWeight.bold,\n                    color: Colors.white,\n                ),\n                titleStyle: TextStyle(\n                    fontSize: 16,\n                    color: Colors.white,\n                ),\n                billedTextStyle: TextStyle(\n                    fontSize: 12,\n                    color: Colors.white,\n                ),\n                subPriceStyle: TextStyle(\n                    fontSize: 12,\n                    color: Colors.white,\n                ),\n                cardBorder: RoundedRectangleBorder(\n                    side: BorderSide(color: Colors.red, width: 4.0),\n                    borderRadius: BorderRadius.circular(8.0),\n                ),\n                )\n            ],\n        ),\n    ],\n)\n```\n\n## Help this project\n\n- Give an 🌟 on Github;\n- Contributions are very welcome! ❤️\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff2acode%2Fpricing_cards","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ff2acode%2Fpricing_cards","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff2acode%2Fpricing_cards/lists"}