The card view seems a little bit too heavy for modern browsers.
Som webpages (Like Twitter), umount the tweets you have already seen from the DOM as you scroll, saving resources.
Virtualization is a very simple technique to implement in views containing list items where we know the height of each item and the total number of items.
In the case of our view, the number of cards we have in each row is dynamically calculated based on the width of the screen, so we must create rows dynamically, which forces us to change the entire element rendering system in the view.
The card view seems a little bit too heavy for modern browsers.
Som webpages (Like Twitter), umount the tweets you have already seen from the DOM as you scroll, saving resources.
Virtualization is a very simple technique to implement in views containing list items where we know the height of each item and the total number of items.
In the case of our view, the number of cards we have in each row is dynamically calculated based on the width of the screen, so we must create rows dynamically, which forces us to change the entire element rendering system in the view.