Socket
Book a DemoInstallSign in
Socket

react-native-reversed-flat-list

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-reversed-flat-list

A reversed React Native FlatList, useful for chats and whatnot

latest
Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
246
38.98%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-reversed-flat-list

A reversed React Native FlatList, useful for creating performant bottom-anchored lists for chats and whatnot

Demo ***

Documentation

Use exactly like you would use FlatList.

- import {FlatList} from 'react-native';
+ import ReversedFlatList from 'react-native-reversed-flat-list';

const MessageList = ({ messages, renderMessage }) => (
-  <FlatList
+  <ReversedFlatList
    data={messages}
    renderItem={renderMessage}
  />
);

This component has not been tested with all the different options, bells and whistles of FlatList. If you hit a use case that doesn't work, please submit a Pull Request!

How does it work

aka. The One Weird Trick They Don't Want You To Know About Making Performant Reverse Lists in React Native

I learned the basic mechanism from expo/react-native-invertible-scroll-view. The trick is to scale transform the FlatList's backing ScrollView to -1 in order to flip it on it's horizontal vertical axis, causing the list to look upside-down-mirrored. We then perform the same flip for each row within the list to turn them back the right way around. (To make it more natural to use the component with time-ordered datasets (oldest first), we also reverse the dataset.)

const styles = StyleSheet.create({
  flip: {
    transform: [{ scaleY: -1 }]
  }
});

Surprisingly, this works well, fast and reliably.

Attribution

License

MIT licensed

Keywords

react

FAQs

Package last updated on 26 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts