今天简单说一下react-native平台上比较好用的表格组件的使用方法: 组件地址:react-native-table-component 第一步,添加依赖react
yarn add react-native-table-component
复制代码
第二步,在须要的功能页面导入组件git
import {Row, Rows, Table} from 'react-native-table-component';
复制代码
第三步,定义显示数据github
const optionsChange = {
tableHead: ['变动项目', '变动前', '变动后'],
tableData: [
['',
'资方姓名',
'45.5%'
],
['',
'企业名称',
'8.9%'
],
]
};
复制代码
第四步,在render函数中添加组件react-native
<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>
复制代码
最后,来看一下效果如何,仍是至关不错的 bash