-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCardView.ios.js
42 lines (39 loc) · 1.32 KB
/
CardView.ios.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import React, {Component} from 'react';
import {View} from 'react-native';
import PropTypes from "prop-types";
export default class CardView extends Component {
static propTypes = {
cardElevation: PropTypes.number,
maxCardElevation: PropTypes.number,
radius: PropTypes.number,
backgroundColor: PropTypes.string,
}
render() {
const {cardElevation = 0, radius = 0, backgroundColor, style = {}, ...props} = this.props
let backgroundStyle = backgroundColor ? {backgroundColor} : {}
if (cardElevation > 0) {
return (
<View style={[{
shadowOffset: {
width: 0,
height: cardElevation
},
shadowRadius: cardElevation,
shadowOpacity: 0.13,
borderRadius: radius,
shadowColor: 'rgba(96,96,96,1)'
}, style, backgroundStyle]} {...props}>
{this.props.children}
</View>
);
} else {
return (
<View style={[{
borderRadius: radius,
}, style, backgroundStyle]} {...props}>
{this.props.children}
</View>
);
}
}
}