1.0.13 • Published 3 years ago

dcd-fast-list v1.0.13

Weekly downloads
1,404
License
MIT
Repository
github
Last release
3 years ago

fast-list

A fast list implementation for React Native with a RecyclerView style API.

Barebones example:

    // @ts-ignore (AUTO)
    const renderRow = (section, row) => {
      const userId = results[row];
      return <Row userId={userId} />;
    };

    content = (
      <FastList
        style={[styles.flex, {marginBottom: keyboardHeight}]}
        contentContainerStyle={{paddingBottom: keyboardHeight === 0 ? SAFE_AREA_BOTTOM : 0}}
        rowHeight={55}
        // @ts-ignore (AUTO)
        renderRow={renderRow}
        keyboardShouldPersistTaps="always"
        sections={[results.length]}
      />
1.0.9

4 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.13

3 years ago

1.0.12

3 years ago

1.0.8

4 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago