https://github.com/ratson/react-native-cardview-plus
A React Native card view with types
https://github.com/ratson/react-native-cardview-plus
android card cardview ios react-native web
Last synced: 7 months ago
JSON representation
A React Native card view with types
- Host: GitHub
- URL: https://github.com/ratson/react-native-cardview-plus
- Owner: ratson
- License: mit
- Created: 2024-04-30T12:17:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-30T12:33:49.000Z (over 1 year ago)
- Last Synced: 2025-01-30T22:51:28.485Z (8 months ago)
- Topics: android, card, cardview, ios, react-native, web
- Language: JavaScript
- Homepage:
- Size: 1.99 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# react-native-card-view-plus [](https://www.npmjs.com/package/react-native-cardview-plus) [](https://www.npmjs.com/package/react-native-cardview-plus)  
[](https://www.npmjs.com/package/react-native-cardview-plus)
Native CardView that compatible for iOS and Android( both lollipop and pre-lolipop).
##### [Material Design Card Spec](https://www.google.com/design/spec/components/cards.html)
##### [CardView Android Documentation](http://developer.android.com/intl/zh-tw/reference/android/support/v7/widget/CardView.html)
## Features
This is a fork of [react-native-cardview](https://github.com/Kishanjvaghela/react-native-cardview) with the following differences,
- Relax React Native version
- Reduce publish package size
- Add types
- Add web support## Getting started
```bash
$ npm install react-native-cardview-plus --save
```## Usage


## Example
Browse the files in the [/example](https://github.com/ratson/react-native-cardview-plus/tree/master/example) directory.
```javascript
import CardView from 'react-native-cardview-plus'
Elevation 0
```
## Attributes
- **cardElevation** (Android/iOS)
An attribute to set the elevation of the card. This will increase the 'drop-shadow' of the card.
There can be some performance impact when using a very high elevation value.- **cardMaxElevation** (Android)
An attribute to support shadow on pre-lollipop device in android. [cardMaxElevation](http://developer.android.com/intl/zh-tw/reference/android/support/v7/widget/CardView.html)
- **cornerRadius** (Android/iOS)
An attribute to set the radius of the card.- **useCompatPadding** (Android)
CardView adds additional padding to draw shadows on platforms before Lollipop. [setUseCompatPadding](https://developer.android.com/reference/android/support/v7/widget/CardView.html#setUseCompatPadding(boolean))
- **cornerOverlap** (Android)
On pre-Lollipop platforms, CardView does not clip the bounds of the Card for the rounded corners. Instead, it adds padding to content so that it won't overlap with the rounded corners. You can disable this behavior by setting this field to false.
Setting this value on Lollipop and above does not have any effect unless you have enabled compatibility padding.
[setPreventCornerOverlap](https://developer.android.com/reference/android/support/v7/widget/CardView.html#setPreventCornerOverlap(boolean))