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 14bafb6 commit 8b39db9Copy full SHA for 8b39db9
src/collectionview/index.ios.ts
@@ -174,6 +174,13 @@ export class CollectionView extends CollectionViewBase {
174
get _childrenCount(): number {
175
return this._map.size;
176
}
177
+ onLoaded() {
178
+ super.onLoaded()
179
+ // we need refreshVisibleItems
180
+ // if some items were updated while unloaded they wont re layout
181
+ // after this (because we are not a Layout view)
182
+ this.refreshVisibleItems()
183
+ }
184
eachChild(callback: (child: ViewBase) => boolean) {
185
// used for css updates (like theme change)
186
this._map.forEach((view) => {
0 commit comments