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 16b476c commit 2bc32daCopy full SHA for 2bc32da
src/collectionview/index.ios.ts
@@ -1000,6 +1000,9 @@ export class CollectionView extends CollectionViewBase {
1000
const cellView: View = cell.view;
1001
if (!firstRender && cellView['isLayoutRequired']) {
1002
this.layoutCell(indexPath.row, cell, cellView);
1003
+ } else {
1004
+ // if the cell view is a canvas we need to ensure redraw is called
1005
+ ((cellView as ContentView).content || cellView).nativeViewProtected.setNeedsDisplay();
1006
}
1007
return cell;
1008
0 commit comments