1.3.6 • Published 1 year ago

react-native-dynamic-table v1.3.6

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

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 Table from 'react-native-dynamic-table';

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"}
      skipArray={['id']} // Add what field you don't want to show in table 
    />
  );
}

Screenshots

Table

1.3.6

1 year ago

1.3.5

1 year ago

1.3.4

1 year ago

1.3.3

2 years ago

1.3.2

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.9

2 years ago

1.2.8

2 years ago

1.2.7

2 years ago

1.2.6

2 years ago

1.2.5

2 years ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.0.0

2 years ago