1.0.13 • Published 2 years ago

dcd-fast-list v1.0.13

Weekly downloads
1,404
License
MIT
Repository
github
Last release
2 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

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.8

3 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago