DataTable.Title
A component to display title in table header.
Usage
import * as React from 'react';
import { DataTable } from 'react-native-paper';
const MyComponent = () => (
<DataTable>
<DataTable.Header>
<DataTable.Title
sortDirection='descending'
>
Dessert
</DataTable.Title>
<DataTable.Title numeric>Calories</DataTable.Title>
<DataTable.Title numeric>Fat (g)</DataTable.Title>
</DataTable.Header>
</DataTable>
</Card>
);
export default MyComponent;
Props
numeric
Type:
boolean
Align the text to the right. Generally monetary or number fields are aligned to right.
sortDirection
Type:
'ascending' | 'descending'
Direction of sorting. An arrow indicating the direction is displayed when this is given.
style
Type:
StyleProp<ViewStyle>
theme
Type:
Theme