All Projects → vobi-io → react-native-animated-flatlist

vobi-io / react-native-animated-flatlist

Licence: MIT license
Animated Flatlist for React-Native

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to react-native-animated-flatlist

React Native Async Image Animated
Simple cross-platform asynchronous image component for React Native 🙌🏻 with a progressive and placeholder image support. Placeholder color otherwise with a few animation options.
Stars: ✭ 141 (+151.79%)
Mutual labels:  animated
React Native Confetti Cannon
React Native confetti explosion and fall like iOS does.
Stars: ✭ 149 (+166.07%)
Mutual labels:  animated
react-native-rough
⚛️✍️Rough.js bindings for that hand-drawn feel.
Stars: ✭ 106 (+89.29%)
Mutual labels:  animated
Zhnbilibili
👌 swift精仿bilibili(4.31.1版本)
Stars: ✭ 142 (+153.57%)
Mutual labels:  animated
Komorebi
A beautiful and customizable wallpapers manager for Linux
Stars: ✭ 2,472 (+4314.29%)
Mutual labels:  animated
React Svg Buttons
React configurable animated svg buttons
Stars: ✭ 209 (+273.21%)
Mutual labels:  animated
React Native Expanding Circle Transition
A simple react native component to make an expanding circle transition.
Stars: ✭ 125 (+123.21%)
Mutual labels:  animated
flip view
A Flutter app with flip animation to view profiles of friends. 🌟
Stars: ✭ 69 (+23.21%)
Mutual labels:  animated
Alive Progress
A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!
Stars: ✭ 2,940 (+5150%)
Mutual labels:  animated
react-native-alphabetflatlist
A Flatlist with alphabet sidebar.
Stars: ✭ 37 (-33.93%)
Mutual labels:  flatlist
Terminalizer
🦄 Record your terminal and generate animated gif images or share a web player
Stars: ✭ 12,165 (+21623.21%)
Mutual labels:  animated
Animatedgraph
Animated Graph which you can include in your application to show information in more attractive way
Stars: ✭ 162 (+189.29%)
Mutual labels:  animated
React Native Examples
A repo that contain React Native examples most related to tutorials I publish
Stars: ✭ 222 (+296.43%)
Mutual labels:  animated
Animated Styled Components
React Animated Styled Components
Stars: ✭ 142 (+153.57%)
Mutual labels:  animated
react-native-scrollable-animated-header
🤯 React Native Animated Header with ScrollView
Stars: ✭ 112 (+100%)
Mutual labels:  animated
Expo Dark Mode Switch
A beautiful React dark mode switch component for iOS, Android, and Web
Stars: ✭ 137 (+144.64%)
Mutual labels:  animated
Svg Gauge
Minimalistic, animated SVG gauge. Zero dependencies
Stars: ✭ 188 (+235.71%)
Mutual labels:  animated
react-native-invertible-flatlist
[DEPRECATED] A FlatList that can be flipped.
Stars: ✭ 17 (-69.64%)
Mutual labels:  flatlist
gephi twitter media downloader
A small script designed to take either a .csv of Tweet ids, or the export from Gephi's TwitterStreamingImporter Plugin and download related Tweet media.
Stars: ✭ 41 (-26.79%)
Mutual labels:  animated
Cv
🎓 Best in Class modern CV, Resume and Portfolio website template. All-in-One-Page site with simply customizable builder.
Stars: ✭ 232 (+314.29%)
Mutual labels:  animated

React Native Animated Flatlist

Animated Flatlist for React-Native

View demo on Snack

Install

npm i -S react-native-animated-flatlist

or

yarn add react-native-animated-flatlist

Usage

Import library

import AnimatedFlatlist from 'react-native-animated-flatlist'

Usage

<AnimatedFlatlist
  items={this.state.data.concat([])}
  id={"id"}
  inAnimation={"fadeIn"}
  outAnimation={"fadeOut"}
  duration={300}
  rowItem={({item}) => (
    <Text>Render Item...</Text>
  )}
/>

Props

Name Type Description Default Value
items array Array of objects to iterate []
id string Uniq identifier property of object -
inAnimation string Animation for newly created item (See react-native-animatable for available animations) fadeIn
outAnimation string Animation for deleted item (See react-native-animatable for available animations) fadeOut
duration nubmer Animation duration 300
rowItem function({item, index}) React component to render Item with item and index params -

Also you can use React-native Flatlist props

Credits

https://github.com/oblador/react-native-animatable

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].