Skip to content

Releases: Purii/react-native-tableview-simple

4.4.1

10 Jun 16:26
Compare
Choose a tag to compare

4.3.1

12 Dec 18:51
Compare
Choose a tag to compare

⏩ Moved to CHANGELOG.md

4.3.0

08 May 18:30
Compare
Choose a tag to compare

⏩ Moved to CHANGELOG.md

4.2.1

20 Jan 07:49
Compare
Choose a tag to compare

⏩ Moved to CHANGELOG.md

4.2.0

09 Sep 16:39
Compare
Choose a tag to compare

⏩ Moved to CHANGELOG.md

4.1.0

22 Jun 06:47
Compare
Choose a tag to compare
v4.1.0

chore(release): 4.1.0

3.2.0

24 May 10:45
Compare
Choose a tag to compare
v3.2.0

chore(release): 3.2.0

0.16.13

03 Oct 19:46
Compare
Choose a tag to compare

Bug Fixes

  • Space letters according to Apple Typography guidelines. Affects Cell and Section (cf688de) – @zachgibson

0.16.11

29 Aug 13:52
Compare
Choose a tag to compare

New features

  • Separated Separator component, to support rendering through FlatList. Affects Section - a0c68c9.
import React from 'react';
import { FlatList } from 'react-native';

import { Cell, Separator, TableView } from 'react-native-tableview-simple';

const data = [
  { id: 1, title: '1' },
  { id: 2, title: '2' },
  { id: 3, title: '3' },
  { id: 4, title: '4' },
];

export default (ExampleWithFlatList = () =>
  <FlatList
    extraData={this.state}
    data={data}
    keyExtractor={(item, index) => item.id}
    renderItem={({ item, separators }) =>
      <Cell
        title={item.title}
        onPress={console.log}
        onHighlightRow={separators.highlight}
        onUnHighlightRow={separators.unhighlight}
      />}
    ItemSeparatorComponent={({ highlighted }) =>
      <Separator isHidden={highlighted} />}
  />);

0.16.5

14 May 10:06
Compare
Choose a tag to compare

Bug Fixes

  • Allow false, null, undefined, and true as valid children. Affects Tableview - 2e9b786