Skip to content

Commit

Permalink
package-lock and readme fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ECorreia45 committed Apr 5, 2020
1 parent 644dde0 commit c6b5921
Show file tree
Hide file tree
Showing 2 changed files with 8,641 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ grouping, searching, styling and more.
* [renderWhenEmpty prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#renderwhenempty-prop)
* [limit prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#limit-prop)
* [reversed prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#reversed-prop)
* [Paginating list (Infinite Loader)](https://github.com/ECorreia45/flatlist-react/tree/documentation#paginating-list)
* [Paginating list (Infinite Loader)](https://github.com/ECorreia45/flatlist-react/tree/documentation#paginating-list-infinite-loader)
* [hasMoreItems prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#hasmoreitems-prop)
* [loadMoreItems prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#loadmoreitems-prop)
* [paginationLoadingIndicator prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#paginationloadingindicator-prop)
* [paginationLoadingIndicatorPosition prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#paginationloadingindicatorposition-prop)
* [paginate prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#paginate-prop)
* [pagination prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#paginate-prop)
* [Dot Notation for string](https://github.com/ECorreia45/flatlist-react/tree/documentation#dot-notation-for-string)
* [Filtering Items](https://github.com/ECorreia45/flatlist-react/tree/documentation#filteringsearching-items)
* [Filtering Items](https://github.com/ECorreia45/flatlist-react/tree/documentation#filtering-items)
* [filterBy prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#filterby-prop)
* [Searching Items](https://github.com/ECorreia45/flatlist-react/tree/documentation#searching-items)
* [searchTerm prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#searchterm-prop)
Expand Down Expand Up @@ -49,7 +49,7 @@ grouping, searching, styling and more.
* [displayGrid prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#displaygrid-prop)
* [gridGap prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#gridgap-prop)
* [minColumnWidth prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#mincolumnwidth-prop)
* [displayRow prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#displaygrid-row)
* [displayRow prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#displayrow-prop)
* [rowGap prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#rowgap-prop)
* [display prop](https://github.com/ECorreia45/flatlist-react/tree/documentation#display-prop)
- [Author](https://github.com/ECorreia45/flatlist-react/tree/documentation#author)
Expand Down Expand Up @@ -156,7 +156,7 @@ For example:
listRef = createRef();

return (
<ul class="list-items" ref={this.listRef} onMouseOver={this.handleMouseOver}>
<ul className="list-items" ref={this.listRef} onMouseOver={this.handleMouseOver}>
<FlatList list={this.props.people} renderItem={<Person/>}/>
</ul>
)
Expand All @@ -169,7 +169,7 @@ listRef = createRef();

return (
<FlatList list={this.props.people} renderItem={<Person/>} wrapperHtmlTag="ul"
class="list-items" ref={this.listRef} onMouseOver={this.handleMouseOver}/>
className="list-items" ref={this.listRef} onMouseOver={this.handleMouseOver}/>
)
```

Expand Down Expand Up @@ -217,7 +217,7 @@ This simply reverse the provided list. Instead of reading the list from first to
[groupReversed](https://github.com/ECorreia45/flatlist-react/tree/documentation#groupreversed-prop)
if you want the same effect on the individual groups.

#### Paginate list
#### Paginating list (Infinite Loader)
You don't have to start with a full list from the beginning. Flatlist allows you to specify that the list you gave
is not complete and a handler to call when user scrolled to the end of the list. You can specify a loading indicator
component to show while you are fetching the next page of the list. This feature works really well with api. Let's take
Expand Down
Loading

0 comments on commit c6b5921

Please sign in to comment.