{"id":32280450,"url":"https://github.com/pktintali/flutter_custom_cards","last_synced_at":"2026-02-22T18:01:37.538Z","repository":{"id":61973403,"uuid":"320522359","full_name":"pktintali/flutter_custom_cards","owner":"pktintali","description":"Flutter Custom Cards help developers to create beautiful custom cards and 3D cards with flutter.","archived":false,"fork":false,"pushed_at":"2021-11-21T05:31:04.000Z","size":361,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-05-03T03:25:59.490Z","etag":null,"topics":["custom-card","dart","flutter","flutter-package","flutter-widget","pub"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/flutter_custom_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/pktintali.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-12-11T09:10:03.000Z","updated_at":"2024-03-15T17:01:38.000Z","dependencies_parsed_at":"2022-10-24T13:30:29.780Z","dependency_job_id":null,"html_url":"https://github.com/pktintali/flutter_custom_cards","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pktintali/flutter_custom_cards","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pktintali%2Fflutter_custom_cards","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pktintali%2Fflutter_custom_cards/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pktintali%2Fflutter_custom_cards/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pktintali%2Fflutter_custom_cards/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pktintali","download_url":"https://codeload.github.com/pktintali/flutter_custom_cards/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pktintali%2Fflutter_custom_cards/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29721048,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T15:10:41.462Z","status":"ssl_error","status_checked_at":"2026-02-22T15:10:04.636Z","response_time":110,"last_error":"SSL_read: 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":["custom-card","dart","flutter","flutter-package","flutter-widget","pub"],"created_at":"2025-10-23T00:44:00.304Z","updated_at":"2026-02-22T18:01:37.530Z","avatar_url":"https://github.com/pktintali.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flutter Custom Cards\n\nFlutter Custom Cards help developers to create beautiful custom cards and 3D cards with flutter.\n\n![Pub Badge](https://img.shields.io/pub/v/flutter_custom_cards?color=blueviolet\u0026style=for-the-badge)\n![License](https://img.shields.io/github/license/pktintali/flutter_custom_cards?style=for-the-badge)\n![Dart Code](https://img.shields.io/github/languages/top/pktintali/flutter_custom_cards?color=success\u0026style=for-the-badge)\n![Repo Size](https://img.shields.io/github/repo-size/pktintali/flutter_custom_cards?color=ff69b4\u0026style=for-the-badge)\n\n## Demo Screenshot\n\u003cimg src=\"https://raw.githubusercontent.com/pktintali/flutter_custom_cards/main/example/screenshots/demo.png\" width=\"400\"\u003e\n\n## Getting Started\n\nAdd the package In your pubspec.yaml\n\n```yaml\nflutter_custom_cards: ^0.2.1\n```\n\nImport and use\n\n```dart\nimport 'package:flutter_custom_cards/flutter_custom_card.dart'\n```\n\n## Basic Usages\n\nTo create a `CustomCard`\n```dart\nCustomCard(\n  borderRadius: 10,\n  color: Colors.yellow,\n  hoverColor: Colors.indigo,\n  onTap: () {},\n  child: Text('Flutter'),\n),\n```\n\nTo Create a `Custom3DCard`\n\n```dart\nCustom3DCard(\n  elevation: 4,\n  child: SizedBox(\n    height: 100,\n    width: 100,\n    child: Center(\n      child: FlutterLogo(size: 65),\n    ),\n  ),\n),\n```\n\u003eFor Full Uses See [Example](https://pub.dev/packages/flutter_custom_cards/example) Section\n## Major Changes\nOn version 0.2 the following major changes were done on the release\n\n- `TextCard`, `ImageCard` and `WidgetCard` have been merged into single card named `CustomCard`.\n- Now new CustomCards supports onTap, hoverColor, height, width and more.\n- `Custom3DCard` is introduced in this version that was not in the previous version.\n- Now there are only two cards `CustomCard` and `Custom3DCard`\n\n## CustomCard Options\nThe following options are available on `CustomCard`\n\n| Property      | Type | Description |\n| --------------| --------- |--------------|\n| borderColor | Color       |Border color of card\n| borderRadius   | double        |Radius of the card\n| borderWidth   | double        | Border width of card\n| child   | Widget        |child Widget of card\n| childPadding   | double        | Padding for the child widget (default is 5)\n| color   | Color        |Background `Color` for card\n| elevation   | double        | Elevation for the card (default is 3)\n| height   | double        | Height of the card (if null the height will be according to child widget)\n| hoverColor   | Color        | Hover color of card (only visible if `onTap` is not null)\n| key   | Key        | Key is an identifier for card\n| onTap   | GestureTapCallback   |Signature for when a tap has occurred.\n| shadowColor   | Color        | Shadow color of card\n| splashColor   | Color        |Splash color of card (only visible if `onTap` is not null\n| width   | double        |Width of the card (if null the width will be according to child widget)\n\n## Custom3DCard Options\nThe following options are available on `Custom3DCard`\n\n| Property      | Type | Description |\n| --------------| --------- |--------------|\n| borderOnForeground   | bool        |If false, the border will be painted behind the child (default true)\n| child   | Widget        | Child widget of card\n| color   | Color        | Color of card\n| elevation   | double        |Elevation of card\n| key   | Key        |Key is an identifier for card\n| margin   | EdgeInsetsGeometry        |The empty space that surrounds the card\n| semanticContainer   | bool        |Whether this widget represents a single semantic container (default true)\n| shadowColor   | Color        |The color to paint the shadow below the card.\n| shadowSpread   | double        | Spread distance of `shadow` below card (default is 10)\n| shape   | ShapeBorder        | The shape of the card\n\n\n## Upcoming\nThe following features will rollout soon\n- `onTap` option on `Custom3DCard` as well\n- `onHover` option in both of the cards\n- `onLongPressed` and `onDoubleTap` option in both of the cards\n- `style` property in `Custom3DCard` using this we can create different types of 3d cards.\n\n\n## License\nThis project is licensed under the MIT license. See [LICENSE](https://github.com/pktintali/flutter_custom_cards/blob/main/LICENSE) for details.\n\n\n\u003cp align=\"center\"\u003e\n  \u003cimg alt = \"Counter\" src=\"https://profile-counter.glitch.me/flutter_custom_cards/count.svg\"/\u003e\n\u003c/p\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpktintali%2Fflutter_custom_cards","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpktintali%2Fflutter_custom_cards","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpktintali%2Fflutter_custom_cards/lists"}