We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de128d6 commit 658e9c2Copy full SHA for 658e9c2
src/ui-pager/index.ios.ts
@@ -99,6 +99,9 @@ export class Pager extends PagerBase {
99
nativeView.showsHorizontalScrollIndicator = false;
100
nativeView.showsVerticalScrollIndicator = false;
101
nativeView.decelerationRate = UIScrollViewDecelerationRateFast;
102
+ this._itemTemplatesInternal.forEach((t) => {
103
+ nativeView.registerClassForCellWithReuseIdentifier(PagerCell.class(), t.key);
104
+ });
105
return nativeView;
106
}
107
0 commit comments