A JavaScript implementation for TableView that looks great on both iOS and Android.
npm install @yuhao1118/react-native-js-tableview



_"Who wants native components. You spend hours linking 'em, they make your app crash, and they don't work with expo, Yuck!"_ - Steve Jobs 😄
!react-native-js-tableview iOS Screenshot
!react-native-js-tableview Android Screenshot
npm i react-native-js-tableview
`
Or (If you're using yarn):`
yarn add react-native-js-tableview
`
$3
Component API Component API Component API Component API Component API Component API Component API Component API Component API
$3
`js
import Table from 'react-native-js-table';
`
or`js
const Table = require('react-native-js-table');
`This Table component is built so that features in the table (such as Sections, Cells, etc.) are
specified as children of the Table itself. This provides an intuitive and react-like API for
controlling the features of the table.
$3
You can check the example in the source code for more detailed information.
For the complete list of available props there are flow annotations and ViewProps for every component. (I will try to provide TypeScript types very soon.)
`js
import Table, { Section, BioCell, StaticCell, TouchableCell } from 'react-native-js-tableview';const App = () => (
{}} />
{}} />
{}} />
{}} />
);
``