{"id":4271,"url":"https://github.com/talut/react-native-simple-card-view","last_synced_at":"2025-08-04T01:31:44.768Z","repository":{"id":57340078,"uuid":"121626711","full_name":"talut/react-native-simple-card-view","owner":"talut","description":"Simple card view component for React-Native","archived":true,"fork":false,"pushed_at":"2019-01-24T11:12:07.000Z","size":806,"stargazers_count":29,"open_issues_count":2,"forks_count":13,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-08-16T17:53:31.318Z","etag":null,"topics":["cardview","mobile","react-native","reactjs","ui"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/talut.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-15T12:22:08.000Z","updated_at":"2024-04-08T23:14:50.000Z","dependencies_parsed_at":"2022-08-26T03:42:09.631Z","dependency_job_id":null,"html_url":"https://github.com/talut/react-native-simple-card-view","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talut%2Freact-native-simple-card-view","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talut%2Freact-native-simple-card-view/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talut%2Freact-native-simple-card-view/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talut%2Freact-native-simple-card-view/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/talut","download_url":"https://codeload.github.com/talut/react-native-simple-card-view/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228582487,"owners_count":17940587,"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":["cardview","mobile","react-native","reactjs","ui"],"created_at":"2024-01-05T20:17:06.465Z","updated_at":"2024-12-07T08:30:25.805Z","avatar_url":"https://github.com/talut.png","language":"JavaScript","funding_links":[],"categories":["Components","Others"],"sub_categories":["UI","Navigation"],"readme":"# React Native Simple Card View\n\nEasiest way to adding a card view on your screen.\n\n- *Hey, v0.3.0 is now released. You can use new component : CardView [See v0.3.0 Features](#v030-features)*\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://s9.postimg.org/qxh30azpb/Simulator_Screen_Shot_-_i_Phone_8_-_2018-02-21_at_17.49.43.png\"\u003e\n\u003cimg src=\"https://s9.postimg.org/pxvdia4rj/Simulator_Screen_Shot_-_i_Phone_8_-_2018-02-21_at_17.49.43.png\" alt=\"CardViewWithImage Example\" /\u003e\n\u003c/a\u003e\n\u003cimg src=\"https://s9.postimg.org/748niqban/card_View_With_Icon.png\" alt=\"CardViewWithImage\" /\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003ca href=\"https://www.npmjs.com/package/react-native-simple-card-view\" target=\"_blank\"\u003e\u003cimg src=\"https://nodei.co/npm/react-native-simple-card-view.png?downloads=true\u0026downloadRank=true\u0026stars=true\" alt=\"package info\" /\u003e\u003c/a\u003e\u003c/p\u003e\n\n[![GitHub stars](https://img.shields.io/github/stars/talut/react-native-simple-card-view.svg?style=social\u0026label=Stars\u0026style=flat-square)](https://github.com/talut/react-native-simple-card-view)\n\n## Getting Started\n\n**via Yarn**\n\n```\nyarn add react-native-simple-card-view\n```\n\n**via NPM**\n\n```\nnpm install react-native-simple-card-view\n```\n\n**React-Native Link**\n\n```\nreact-native link\n```\n\n#### Components\n\n- [x] CardViewWithIcon ([See documentation of usage](/docs/en/cardviewwithicon.md))\n- [x] CardViewWithImage ([See documentation of usage](/docs/en/cardviewwithimage.md))\n- [x] CardView (Place your component to inside of CardView)\n- [ ] CardViewWithAnimation or Adding animation support to CardViewWithIcon, CardViewWithImage, ArticleCardView\n\n## Styling card view\n\nYou can create an object, who has the card view styles.\nThen you can give that object to style props. Card view style object can have the following attributes\n\n| Prop | Type | Default | Description | Platform |\n|---|---|---|---|---|\n|**`width`**|`number`| 300 | Card view width |iOS,Android|\n|**`height`**|`number`| - | Card view height |iOS,Android|\n|**`padding`**|`number`| 5 | Card view padding |iOS,Android|\n|**`margin`**|`number`| 10 | Card view margin |iOS,Android|\n|**`borderRadius`**|`number`| 3 | Card view border radius|iOS,Android|\n|**`shadowColor`**|`string`| `'#000000' | Card view shadow color |iOS,Android|\n|**`shadowOpacity`**|`number`| 0.3 | Card vie`w shadow opacity |iOS,Android|\n|**`shadowRadius`**|`number`| 3 | Card view shadow radius |iOS,Android|\n|**`bgColor`**|`string`| `'#ffffff'` | Card view background color |iOS,Android|\n|**`elevation`**|`number`| 3 | Only for Android shadow value  |Android|\n|**`shadowOffsetWidth`**|`number`| 3 |  Shadow offset width only for iOS |iOS|\n|**`shadowOffsetHeight`**|`number`| 3 | Shadow offset height only for iOS  |iOS|\n\n## Components \u0026 Examples\n\n#### CardView\n\n[![English](https://img.shields.io/badge/EN-English-blue.svg)](/docs/en/cardview.md)\n[![Turkish](https://img.shields.io/badge/TR-T%C3%BCrk%C3%A7e-red.svg)](/docs/tr/cardview.md)\n\n#### CardViewWithIcon\n\n[![English](https://img.shields.io/badge/EN-English-blue.svg)](/docs/en/cardviewwithicon.md)  [![Turkish](https://img.shields.io/badge/TR-T%C3%BCrk%C3%A7e-red.svg)](/docs/tr/cardviewwithicon.md)\n\n#### CardViewWithImage\n\n[![English](https://img.shields.io/badge/EN-English-blue.svg)](/docs/en/cardviewwithimage.md)\n[![Turkish](https://img.shields.io/badge/TR-T%C3%BCrk%C3%A7e-red.svg)](/docs/tr/cardviewwithimage.md)\n\n\n## v0.3.0 Features\n\n- CardView component added. (This component can be used for everything you can fill inside)\n- Some unnecessary codes deleted\n- Custom font feature\n- Turkish documentation support\n\n## Contributors (Thank you all)\n\n- **[David Halewood : @haletothewood](https://github.com/haletothewood)**\n\n## Built With\n\n* [React-Native](https://facebook.github.io/react-native/)\n* [React-Native-Vector-Icons](https://github.com/oblador/react-native-vector-icons) - Customizable Icons for React Native\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalut%2Freact-native-simple-card-view","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftalut%2Freact-native-simple-card-view","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalut%2Freact-native-simple-card-view/lists"}