From 8567a14027bab46bd04d0de97ee31b368f69675a Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Wed, 18 Dec 2019 19:00:11 +0300 Subject: [PATCH] Mention ngx-ui-scroll in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4699de3..71ec7d1 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,12 @@ of visible items and skip items that are offscreen. You may also have heard abou "buffered render" or "windowed render" - it's the same. There are plenty of virtual scroll implementations for JS. -Some of them are part of a larger UI library (ag-grid, ExtJS and so on), -some of them are more standalone (react-virtualized, react-window, ngx-virtual-scroller, react-dynamic-virtual-list). +Some of them are part of a larger UI library (ag-grid, ExtJS and so on), some of them are more +standalone (react-virtualized, react-window, ngx-virtual-scroller, ngx-ui-scroll, react-dynamic-virtual-list). However, there is a thing that they all miss: dynamic (and unknown apriori) row heights. Some implementations allow to set different row heights for items, but you must calculate -all heights before rendering; some allow dynamic row heights, but have bugs and do not really work; +all heights before rendering; some allow dynamic row heights, but have bugs and act weird or don't really work; others just force you to use fixed row height. Most implementations are also tied to some specific UI component or framework and are unusable with other ones.