Chip
Chips can be used to display entities in small blocks.
Usage
import * as React from 'react';
import { Chip } from 'react-native-paper';
const MyComponent = () => (
<Chip icon="info" onPress={() => console.log('Pressed')}>Example Chip</Chip>
);
export default MyComponent;
Props
mode
Type:
'flat' | 'outlined'
Default value:
'flat'
Mode of the chip.
flat
- flat chip without outline.outlined
- chip with an outline.
disabled
Type:
boolean
Default value:
false
Whether the chip is disabled. A disabled chip is greyed out and onPress
is not called on touch.
accessibilityLabel
Type:
string
Accessibility label for the chip. This is read by the screen reader when the user taps the chip.
onClose
Type:
() => mixed
Function to execute on close button press. The close button appears only when this prop is specified.
style
Type:
any
theme
Type:
Theme