最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How can I show data in a table format in react native? - Stack Overflow

programmeradmin2浏览0评论

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 0
Add a ment  | 

2 Answers 2

Reset to default 5

You 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 }
});
发布评论

评论列表(0)

  1. 暂无评论