@protonapp/react-native-material-ui
Version:
React Native Material Design Components
30 lines (27 loc) • 449 B
Markdown
```js
...
import { Card } from 'react-native-material-ui';
...
render() {
<View>
<Card>
<Text>Hello world!</Text>
</Card>
</View>
}
```
```js
const propTypes = {
/**
* Called when card is pressed
*/
onPress: PropTypes.func,
/**
* You can override any style for this card
*/
style: PropTypes.object,
};
```