You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the `PagerViewPackage` class to your list of exported packages.
84
86
85
87
```java
86
88
@Override
87
89
protectedList<ReactPackage> getPackages() {
88
90
returnArrays.<ReactPackage>asList(
89
91
newMainReactPackage(),
90
-
newRNCPagerViewPackage()
92
+
newPagerViewPackage()
91
93
);
92
94
}
93
95
```
@@ -145,7 +147,7 @@ For advanced usage please take a look into our [example project](https://github.
145
147
|`showPageIndicator: boolean`| Shows the dots indicator at the bottom of the view | iOS |
146
148
|`overScrollMode: OverScollMode`| Used to override default value of overScroll mode. Can be `auto`, `always` or `never`. Defaults to `auto`| Android |
147
149
|`offscreenPageLimit: number`| Set the number of pages that should be retained to either side of the currently visible page(s). Pages beyond this limit will be recreated from the adapter when needed. Defaults to RecyclerView's caching strategy. The given value must either be larger than 0. | Android |
148
-
|`overdrag: boolean`|Allows for overscrolling after reaching the end or very beginning or pages| iOS |
150
+
|`overdrag: boolean`| Allows for overscrolling after reaching the end or very beginning or pages. Defaults to `false`| iOS |
0 commit comments