Skip to content

Commit

Permalink
Merge pull request #459 from Flipkart/GBP-addition
Browse files Browse the repository at this point in the history
Gbp addition
  • Loading branch information
arunreddy10 authored Feb 4, 2020
2 parents c80825f + 7f69729 commit f1a6a48
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/guides/samplecode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Please go through DataProvider, LayoutProvider and rowRenderer in detail. Those

You can also refer to expo: https://snack.expo.io/@naqvitalha/rlv-demo

Please note that we recommend using [gridlayoutprovider](https://github.com/muskeinsingh/recyclerlistview-gridlayoutprovider) with RLV starting v3.0. It is one of the exports of RLV. Docs will be updated soon.

```js
/***
Use this component inside your React Native Application.
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "recyclerlistview",
"version": "2.0.14",
"version": "3.0.0",
"description": "The listview that you need and deserve. It was built for performance, uses cell recycling to achieve smooth scrolling.",
"main": "dist/reactnative/index.js",
"types": "dist/reactnative/index.d.ts",
Expand Down Expand Up @@ -36,6 +36,7 @@
"dependencies": {
"lodash.debounce": "4.0.8",
"prop-types": "15.5.8",
"recyclerlistview-gridlayoutprovider": "1.0.1",
"ts-object-utils": "0.0.5"
},
"peerDependencies": {
Expand Down
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import ContextProvider from "./core/dependencies/ContextProvider";
import DataProvider, { BaseDataProvider } from "./core/dependencies/DataProvider";
import { BaseLayoutProvider, Dimension, LayoutProvider } from "./core/dependencies/LayoutProvider";
import { GridLayoutProvider, GridLayoutManager } from "recyclerlistview-gridlayoutprovider";
import RecyclerListView, { OnRecreateParams } from "./core/RecyclerListView";
import BaseScrollView from "./core/scrollcomponent/BaseScrollView";
import { BaseItemAnimator } from "./core/ItemAnimator";
Expand All @@ -17,6 +18,8 @@ export {
BaseLayoutProvider,
LayoutManager,
WrapGridLayoutManager,
GridLayoutProvider,
GridLayoutManager,
RecyclerListView,
ProgressiveListView,
BaseItemAnimator,
Expand Down

0 comments on commit f1a6a48

Please sign in to comment.