### Install React Native Card Collection
Source: https://github.com/kuraydev/react-native-card-collection/blob/master/README.md
Add the react-native-card-collection dependency to your project using npm.
```ruby
npm i react-native-card-collection
```
--------------------------------
### Basic Card Usage
Source: https://github.com/kuraydev/react-native-card-collection/blob/master/README.md
Demonstrates how to use the Card component with a Container to display device information. Ensure necessary components are imported.
```javascript
import { Card } from "react-native-card-collection";
import Container from "react-native-card-collection/components/Container/Container";
```
--------------------------------
### Advanced Card Usage with Children
Source: https://github.com/kuraydev/react-native-card-collection/blob/master/README.md
Shows how to use the Card component with custom children, allowing for flexible content within the card.
```javascript
import { Card } from "react-native-card-collection";
import Container from "react-native-card-collection/components/Container/Container";
{children}
```
=== COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.