2 रिपॉजिटरी
Optimizations that load content ahead of display for scrollable views to eliminate visible loading delays during scrolling.
Distinct from Scrollable View Layout Systems: No candidate matches the preloading optimization for scrollable views; candidates focus on layout or content types, not preloading.
Explore 2 awesome GitHub repositories matching mobile development · Scrollable View Preloading. Refine with filters or upvote what's useful.
AsyncDisplayKit is an asynchronous UI framework and layout engine for iOS designed to offload layout and rendering operations from the main thread. It functions as a concurrent interface library that handles asynchronous image decoding and UI composition to maintain high frame rates. The project uses a node-based view hierarchy to build thread-safe interface structures on background threads. It includes an intelligent preloading system that predicts scroll direction to trigger data fetching and layout operations for elements before they become visible. The framework covers high-performance m
Predicts scroll direction to trigger data fetching and layout operations for elements before they become visible.
Texture is an iOS framework for building user interfaces that render on background threads using thread-safe node abstractions. It provides an asynchronous display node architecture that constructs and composites view hierarchies off the main thread, then synchronises the final bitmap for presentation, enabling smooth and responsive apps. The framework replaces UIKit's standard view system with node-based hierarchies that can be created, configured, and mutated on any queue without locking the main thread. The framework distinguishes itself through a precomputed rendering pipeline that decode
Preloads data for scroll interfaces to eliminate visible loading delays during scrolling.