How to Implement Table Component in React Native?
Published On: 27/06/2022 | Category:
React Native
Hi Guys,
This tutorial is focused on how to implement table component in react native. we will help you to give example of react native table component example. let’s discuss about how to use table component in react native. In this article, we will implement a table component example in react native. You just need to some step to done how to create table component in react native.
Let's start following example:
Step 1: Download ProjectIn the first step run the following command to create a project.
expo init ExampleAppStep 2: Install Table Component
You install table component to create table:
npm install react-native-table-componentStep 3: App.js
In this step, You will open the App.js file and put the code.
import React, { useState } from 'react'; import { StyleSheet, View } from 'react-native'; import { Table, TableWrapper, Row, Rows } from 'react-native-table-component'; const App = () => { const [tableHead, setTableHead] = useState(['Id', 'Name', 'Email', 'Address']); const [tableData, setTableData] = useState([ [1, 'Divyesh', '[email protected]', 'Rajkot'], [2, 'Nikhi', '[email protected]', 'Rajkot'], [3, 'Bhavesh', '[email protected]', 'Rajkot'], [4, 'Vishal', '[email protected]', 'Rajkot'], ]); return ( <View style={styles.container}> <Table borderStyle={{ borderWidth: 1 }}> <Row data={tableHead} flexArr={[1, 1, 2, 1]} style={styles.head} textStyle={styles.text} /> <TableWrapper style={styles.wrapper}> <Rows data={tableData} flexArr={[1,1,2,1]} style={styles.row} textStyle={styles.text} /> </TableWrapper> </Table> </View> ); } const styles = StyleSheet.create({ container: { flex: 1, padding: 16, paddingTop: 250, }, head: { height: 40, backgroundColor: '#f1f8ff', }, wrapper: { flexDirection: 'row', }, title: { flex: 1, backgroundColor: '#f6f8fa', }, row: { height: 28, }, text: { textAlign: 'center', }, }); export default App;Run Project
In the last step run your project using the below command.
expo start
You can QR code scan in Expo Go Application on mobile.
Output :
It will help you...