react-native-cardview-plus
v0.0.1
Published
A React Native card view with types
Downloads
59
Maintainers
Readme
react-native-card-view-plus
Native CardView that compatible for iOS and Android( both lollipop and pre-lolipop).
Material Design Card Spec
CardView Android Documentation
Features
This is a fork of react-native-cardview with the following differences,
- Relax React Native version
- Reduce publish package size
- Add types
- Add web support
Getting started
$ npm install react-native-cardview-plus --save
Usage
Example
Browse the files in the /example directory.
import CardView from 'react-native-cardview-plus'
<CardView
cardElevation={2}
cardMaxElevation={2}
cornerRadius={5}>
<Text>
Elevation 0
</Text>
</CardView>
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
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
- 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.