Skip to content

Commit f054f73

Browse files
committed
✏ Update project description
1 parent ca34944 commit f054f73

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
# React Native Immutable ListView
22

3-
An efficient ListView for React Native that's compatible with [Immutable](https://facebook.github.io/immutable-js/) data.
4-
53
[![Build status](https://travis-ci.org/cooperka/react-native-immutable-list-view.svg?branch=master)](https://travis-ci.org/cooperka/react-native-immutable-list-view)
64
[![npm downloads](https://img.shields.io/npm/dm/react-native-immutable-list-view.svg)](https://www.npmjs.com/package/react-native-immutable-list-view)
75
[![npm version](https://img.shields.io/npm/v/react-native-immutable-list-view.svg)](https://www.npmjs.com/package/react-native-immutable-list-view)
86
[![Latest GitHub tag](https://img.shields.io/github/tag/cooperka/react-native-immutable-list-view.svg)](https://github.com/cooperka/react-native-immutable-list-view)
97

8+
`ImmutableListView` is an efficient `ListView` for React Native.
9+
10+
It easily integrates with [Immutable](https://facebook.github.io/immutable-js/) data to give you faster performance and less headaches.
11+
1012
## Motivation
1113

1214
- Do you find yourself re-implementing `rowHasChanged` and saving `dataSource` to your state over and over?
13-
- Do you listen for lifecycle events simply so you can update `dataSource`, and thus can't easily use pure functional components with lists?
14-
- Do you have nested objects in your state so a shallow diff won't cut it for pure rendering?
1515
- Do you use Immutable data, only to write wrappers for data access in order to use them with a ListView?
16+
- Do you listen for lifecycle events simply so you can update `dataSource` -- and thus you can't easily use pure functional components with lists?
17+
- Do you have nested objects in your state so a shallow diff won't cut it for pure rendering?
18+
- Do you use a navigator and want better performance while animating?
1619

1720
If you answered yes to ANY of these questions, this project will surely be of help. Check out the examples below!
1821

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-immutable-list-view",
33
"version": "0.2.0",
4-
"description": "An efficient ListView for React Native that's compatible with Immutable data.",
4+
"description": "An efficient ListView for React Native",
55
"main": "lib/ImmutableListView.js",
66
"files": [
77
"lib",

0 commit comments

Comments
 (0)