{"id":23894514,"url":"https://github.com/itsaladin/react-native-fancy-table","last_synced_at":"2026-04-17T02:32:25.790Z","repository":{"id":193658487,"uuid":"689261153","full_name":"itsaladin/react-native-fancy-table","owner":"itsaladin","description":"React Native Table NPM Package","archived":false,"fork":false,"pushed_at":"2023-11-15T10:18:58.000Z","size":716,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-26T15:02:03.363Z","etag":null,"topics":["react-native","react-native-fancy-table","react-native-table"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/react-native-fancy-table","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itsaladin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-09T08:58:26.000Z","updated_at":"2024-04-27T09:14:39.000Z","dependencies_parsed_at":"2025-02-23T06:37:15.316Z","dependency_job_id":null,"html_url":"https://github.com/itsaladin/react-native-fancy-table","commit_stats":null,"previous_names":["itsaladin/react-native-fancy-table"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/itsaladin/react-native-fancy-table","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsaladin%2Freact-native-fancy-table","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsaladin%2Freact-native-fancy-table/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsaladin%2Freact-native-fancy-table/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsaladin%2Freact-native-fancy-table/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itsaladin","download_url":"https://codeload.github.com/itsaladin/react-native-fancy-table/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsaladin%2Freact-native-fancy-table/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31912389,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["react-native","react-native-fancy-table","react-native-table"],"created_at":"2025-01-04T14:59:28.697Z","updated_at":"2026-04-17T02:32:25.709Z","avatar_url":"https://github.com/itsaladin.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-native-fancy-table\n\nReact Native Scrollable,Dynamic, Responsive Data table view horizontal and vertical.:point_left::point_left::point_left::point_left::sparkling_heart::sparkling_heart::sparkling_heart: :v::v::v:\n\n| ![Screenshot a](screenshots/a.png) | ![Screenshot b](screenshots/b.png) | ![Screenshot c](screenshots/c.png) |\n| ---------------------------------- | ---------------------------------- | ---------------------------------- |\n\n## Installation\n\nUsing Yarn:\n\n```sh\nyarn add react-native-fancy-table\n```\n\n```sh\nnpm install react-native-fancy-table\n```\n\n## Usage\n\n```js\nimport * as React from 'react';\nimport { StyleSheet, Text, View } from 'react-native';\nimport FancyTable from 'react-native-fancy-table';\n\nexport default function App() {\n  const header = [\n    ' id',\n    'Roll No',\n    'Order Qty',\n    'Line Input',\n    'Line Balalance',\n    'Production',\n    'Sample',\n    'Killed',\n    'Missing',\n    'Buy Date',\n    'Ship Date',\n    'Proto No',\n    'Set Code',\n    'Destination Place',\n    'Delivery Place',\n    'Item Number',\n  ];\n  const tableBody = [\n    {\n      id: 1,\n      RollNo: '1',\n      Pdm_ItemCode: '2442010',\n      description: ' BUET',\n      LotNo: 'N23060829',\n      UOM: 'YDS',\n      RollQty: 55,\n      RollWidth: '153cm',\n      RollColor: 'DKT N07A BLACK',\n      RollShrinkageWarp: '',\n      RollshrinkageWeft: '',\n      SupplierId: 380,\n      supplier: '',\n      ItemId: 0,\n      item: 'Fabric',\n      consignment: '3333',\n    },\n    {\n      id: 1,\n      RollNo: '1',\n      Pdm_ItemCode: '2442010',\n      description: ' BUET',\n      LotNo: 'N23060829',\n      UOM: 'YDS',\n      RollQty: 55,\n      RollWidth: '153cm',\n      RollColor: 'DKT N07A BLACK',\n      RollShrinkageWarp: '',\n      RollshrinkageWeft: '',\n      SupplierId: 380,\n      supplier: '',\n      ItemId: 0,\n      item: 'Fabric',\n      consignment: '3333',\n    },\n  ];\n\n  return (\n    \u003c\u003e\n      \u003cFancyTable\n        headerBGColor=\"silver\"\n        headerFontColor=\"white\"\n        headerFontSize={15}\n        bodyFontSize={13}\n        bodyFontColor=\"black\"\n        tableHeight={1.4}\n        header={header}\n        tableBody={tableBody}\n        rowWidth={4}\n        borderColor=\"gray\"\n        borderWidth={1}\n      /\u003e\n    \u003c/\u003e\n  );\n}\n```\n\n## Properties\n| Prop              | Type  | Description | Default |\n|---|---|---|---|\n| \u003cb\u003eheader\u003c/b\u003e     | Array[] | Table header you could use array data as single string. | `null` |\n| \u003cb\u003etableBody\u003c/b\u003e  | Array[] | Table data you could use as array of object, key value pare. | `null` |\n| \u003cb\u003eheaderBGColor\u003c/b\u003e      | String | Header background color | `white` |\n| \u003cb\u003eheaderFontColor\u003c/b\u003e| String| Table header font color. | `black` |\n| \u003cb\u003eheaderFontSize\u003c/b\u003e  | Number | header font size. | `16` |\n| \u003cb\u003ebodyFontSize\u003c/b\u003e    | Number | Body font size. | `14` |\n| \u003cb\u003ebodyFontColor\u003c/b\u003e   | String | Body font color.| `[]` |\n| \u003cb\u003etableHeight\u003c/b\u003e  | Number | Reverse table height resizer. | `4` |\n| \u003cb\u003erowWidth\u003c/b\u003e   | Number   | Increment row with by reverse order   |   4  |\n| \u003cb\u003eborderColor\u003c/b\u003e | String | Table border color | `gray` |\n| \u003cb\u003eborderWidth\u003c/b\u003e | Number | Table border width | `1` |\n\n## Contributing\n\nSee the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n\n---\n\nMade with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsaladin%2Freact-native-fancy-table","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitsaladin%2Freact-native-fancy-table","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsaladin%2Freact-native-fancy-table/lists"}