Skip to content

Releases: Purii/react-native-tableview-simple

4.4.1

Choose a tag to compare

@Purii Purii released this 10 Jun 16:26

⏩ Moved to CHANGELOG.md

4.3.1

Choose a tag to compare

@Purii Purii released this 12 Dec 18:51

⏩ Moved to CHANGELOG.md

4.3.0

Choose a tag to compare

@Purii Purii released this 08 May 18:30

⏩ Moved to CHANGELOG.md

4.2.1

Choose a tag to compare

@Purii Purii released this 20 Jan 07:49

⏩ Moved to CHANGELOG.md

4.2.0

Choose a tag to compare

@Purii Purii released this 09 Sep 16:39

⏩ Moved to CHANGELOG.md

4.1.0

Choose a tag to compare

@Purii Purii released this 22 Jun 06:47
v4.1.0

chore(release): 4.1.0

3.2.0

Choose a tag to compare

@Purii Purii released this 24 May 10:45
v3.2.0

chore(release): 3.2.0

0.16.13

Choose a tag to compare

@Purii Purii released this 03 Oct 19:46

Bug Fixes

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

0.16.11

Choose a tag to compare

@Purii Purii released this 29 Aug 13:52

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

Choose a tag to compare

@Purii Purii released this 14 May 10:06

Bug Fixes

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