I need to show data in a Table format in my app. I want something like this"
How can I add a dropdown icon next to the first header in the table and design my code similar to the above image?
I need to show data in a Table format in my app. I want something like this"
How can I add a dropdown icon next to the first header in the table and design my code similar to the above image?
Share Improve this question edited Sep 25, 2020 at 16:35 double-beep 5,51919 gold badges40 silver badges49 bronze badges asked Mar 18, 2019 at 11:04 RamaRama 2892 gold badges8 silver badges23 bronze badges 02 Answers
Reset to default 5You can use DataTable from react-native-paper library.
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> );
sortDirection='descending' will help you add drop down icon next to your header.
try this package https://www.npmjs./package/react-native-table-ponent
import React, { Component } from 'react';
import { StyleSheet, View } from 'react-native';
import { Table, Row, Rows } from 'react-native-table-ponent';
export default class ExampleOne extends Component {
constructor(props) {
super(props);
this.state = {
tableHead: ['Visite Date', 'Member', 'you ...', 'etc..'],
tableData: [
['07/29/2016', 'JEFF', '$46.80', '...'],
['07/29/2016', 'JEFF', '$46.80', '...'],
['07/29/2016', 'JEFF', '$46.80', '...'],
['07/29/2016', 'JEFF', '$46.80', '...']
]
}
}
render() {
const state = this.state;
return (
<View style={styles.container}>
<Table borderStyle={{borderWidth: 2, borderColor: '#c8e1ff'}}>
<Row data={state.tableHead} style={styles.head} textStyle={styles.text}/>
<Rows data={state.tableData} textStyle={styles.text}/>
</Table>
</View>
)
}
}
const styles = StyleSheet.create({
container: { flex: 1, padding: 16, paddingTop: 30, backgroundColor: '#fff' },
head: { height: 40, backgroundColor: '#f1f8ff' },
text: { margin: 6 }
});