react-native表格组件的使用

5,295 阅读1分钟

今天简单说一下react-native平台上比较好用的表格组件的使用方法: 组件地址:react-native-table-component 第一步,添加依赖

yarn add react-native-table-component

第二步,在需要的功能页面导入组件

import {Row, Rows, Table} from 'react-native-table-component';

第三步,定义显示数据

const optionsChange = {
            tableHead: ['变更项目', '变更前', '变更后'],
            tableData: [
                ['',
                '资方姓名',
                '45.5%'
                ],
                ['',
                '企业名称',
                '8.9%'
                ],
            ]
        };

第四步,在render函数中添加组件

<View style={{padding: 20}}>
         <Table borderStyle={{borderWidth: 1, borderColor: '#f0f'}}>
               <Row data={options.tableHead} style={styles.head} textStyle={styles.text}/>
                <Rows data={options.tableData} textStyle={styles.text}/>
         </Table>
</View>

最后,来看一下效果如何,还是相当不错的

在这里插入图片描述