Skip to content

Rajkumar77chaudhari/react-native-dynamic-table

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React Native Dynamic Table

react-native-dynamic-table is a React Native component that allows you to create dynamic and customizable tables in your mobile applications. It provides a flexible and easy-to-use interface for rendering tables with varying numbers of rows and columns.

Installation

npm install react-native-dynamic-table

Usage/Examples

import Component from "my-project";

function App() {
  return (
    <Table
      data={[{ id: "1", name: "Rajkumar" }]}
      onRowPress={function (row: Record<string, any>): void {
        console.log(row);
      }}
      heading={"Data Table"}
      description={"Select Row to Process Data"}
    />
  );
}

Screenshots

Table

About

Creates a Dynamic table with just JSON DATA

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published