3 个仓库
Rendering strategies that only load a subset of elements currently in or near the viewport.
Distinct from Sliding Window Algorithms: Focuses on UI memory optimization via deferred rendering rather than algorithmic sliding window data processing.
Explore 3 awesome GitHub repositories matching user interface & experience · Windowed Rendering. Refine with filters or upvote what's useful.
react-native-swiper is a cross-platform mobile carousel component that provides a swipeable interface for cycling through content panels. It supports both horizontal and vertical transitions and includes a visual pagination system using customizable indicators like dots or numbers to track the user's position. The component features a lazy-loading mechanism that defers the rendering of off-screen content to reduce memory usage and improve initial load times. It supports infinite looping, automated slide transitions via a timer, and programmatic navigation control to move the slider to specifi
Implements a lazy-loading mechanism that renders only the active slide and its immediate neighbors.
React tiny virtual list is a zero-dependency component library that optimizes performance for extensive vertical and horizontal collections by rendering only the items currently visible in the viewport. It handles large datasets efficiently while supporting variable item dimensions and dynamic content updates at runtime. The component supports both horizontal and vertical scroll directions, absolute positioning layouts, and dynamic offset measurements computed via fixed numbers, size arrays, or callback functions. It also provides imperative methods to programmatically scroll or jump to speci
Renders only the subset of items falling within the current scroll container bounds to maintain high performance.
该项目是一个专为 React 设计的高性能数据网格组件,旨在在电子表格风格的界面中渲染大型数据集。它提供了一个框架,用于显示结构化表格信息,同时支持复杂的基于单元格的交互和数据管理任务。 该组件通过支持类似电子表格的编辑工作流脱颖而出,包括键盘驱动的导航以及将自定义组件注入单个单元格的能力。用户可以通过调整列宽和组织表头来动态管理网格布局,确保界面适应特定的数据可视化需求。 该网格包括通过窗口化渲染和懒加载处理大量信息的能力,通过仅处理可见的数据子集来保持性能。它还通过组件引用提供命令式控制,允许以编程方式操作滚动位置和选择状态。
Maintains high performance by rendering only the visible subset of rows and columns.