CardActions

A component to show a list of actions inside a Card.

Usage

import * as React from 'react';
import { Button, Card, CardActions } from 'react-native-paper';

const MyComponent = () => (
  <Card>
    <CardActions>
      <Button>Cancel</Button>
      <Button>Ok</Button>
    </CardActions>
  </Card>
);

Props

children (required)
Type: React.Node

Content of the CardActions.

style
Type: any