Back to React Native Paper

CardActions

docs/public/1.0/card-actions.html

5.15.1455 B
Original Source

CardActions

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

Usage

js
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