InterviewSolution
Saved Bookmarks
| 1. |
How can you render a huge item list in Ionic without affecting the scroll performance? |
|
Answer» With the collection-repeat DIRECTIVE that RENDERS visible items only in the DOM, developers can present huge item lists without affecting the SCROLL performance. As items visible in a viewport are only provided with this process, the scroll performance will not be affected. |
|