DialogActions

A component to show a list of actions in a Dialog.

Usage

import * as React from 'react';
import { Button, Dialog, DialogActions } from 'react-native-paper';

export default class MyComponent extends React.Component {
  state = {
    visible: false,
  };

  _hideDialog = () => this.setState({ visible: false });

  render() {
    return (
      <Dialog
        visible={this.state.visible}
        onDismiss={this._hideDialog}>
        <DialogActions>
          <Button onPress={() => console.log("Cancel")}>Cancel</Button>
          <Button onPress={() => console.log("Ok")}>Ok</Button>
        </DialogActions>
      </Dialog>
    );
  }
}

Props

children (required)
Type: React.Node

Content of the DialogActions.

style
Type: any