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 93fbd46 commit 9df1290Copy full SHA for 9df1290
src/collectionview/index.ios.ts
@@ -369,7 +369,7 @@ export class CollectionView extends CollectionViewBase {
369
return;
370
}
371
if ((layoutView instanceof UICollectionViewFlowLayout && this._effectiveColWidth) || this._effectiveRowHeight) {
372
- (layoutView as UICollectionViewFlowLayout).itemSize = CGSizeMake(
+ (layoutView as UICollectionViewFlowLayout).estimatedItemSize = (layoutView as UICollectionViewFlowLayout).itemSize = CGSizeMake(
373
Utils.layout.toDeviceIndependentPixels(this._effectiveColWidth),
374
Utils.layout.toDeviceIndependentPixels(this._effectiveRowHeight)
375
);
0 commit comments