# react-native-reanimated-list

> Animated FlatList implementation using react-native-reanimated

Latest version **1.0.0-alpha4** (published 2020-01-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-native-reanimated-list
pnpm add react-native-reanimated-list
yarn add react-native-reanimated-list
bun add react-native-reanimated-list
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0-alpha4 |
| Published | 2020-01-06 |
| First published | 2019-12-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 16.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | iamsuneeth |
| Maintainers | iamsuneeth |
| Keywords | react-native, list, reanimated, typescript |

## Links

- npm: https://www.npmjs.com/package/react-native-reanimated-list
- Repository: https://github.com/iamsuneeth/react-native-reanimated-list
- Homepage: https://github.com/iamsuneeth/react-native-reanimated-list#readme
- Issues: https://github.com/iamsuneeth/react-native-reanimated-list/issues
- npm.io page: https://npm.io/package/react-native-reanimated-list

## Dependencies (1)

- [lodash](https://npm.io/package/lodash.md) ^4.17.15

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 1.0.0-alpha4 (latest) — 2020-01-06
- 1.0.0-alpha3 — 2019-12-25
- 1.0.0-alpha2 — 2019-12-24
- 1.0.0-alpha1 — 2019-12-24

## README

# Reanimated List

animated FlatList implementation using react-native-reanimated

Usable with Expo!

## Installation

react-native-reanimated-list _expects react-native-reanimated_ and _react-native-gesture-handler_ to be installed.

Open a Terminal in the project root and run:

```sh
yarn add react-native-reanimated-list
```

or if you use `npm`:

```sh
npm install react-native-reanimated-list
```

## Usage

```javascript

import {AnimatedList} from 'react-native-reanimated-list';

const Example = () => {
  /* ..rest of the code */

  render() {
    return (
      <View style={{flex:1}}>
        <AnimatedList
        data={payees}
        listItemHeight={100} //optional
        keyExtractor={(item, index) => item.id} //mandatory
        renderItem={({ item, index }) => (
          <View key={item.id} style={{ flex: 1 }}>
            {/*  ...code */}
          </View>
        )}
      />
    </View>)
  }
}
```

## Props and rest of the documentation will follow soon.

---
_Source: https://npm.io/package/react-native-reanimated-list · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
