Improving List Performance in Designer 2.0 with Fixed Height

Issue:
Users of Designer 2.0 may experience slow loading and lag when scrolling through their lists, even when the number of items is relatively low.

Solution:
If your list contains more than 5 to 10 items, it’s recommended to set a fixed height for the list. This will improve rendering speed and prevent lag during scrolling.

Technical Explanation:
Without a defined height, the application attempts to render all items at once, leading to performance issues. By setting a fixed height, the rendering engine only loads the items that are visible within the designated space, effectively using lazy loading or smart rendering techniques to optimize performance.

@Ritik_Dixit @AnushkaGupta @rahulkumar @Mohammad_Shahrukh @tamanna.nirban

3 Likes

Thanks @Vinay_Pratap_Singh sir