1 Repo
Mechanisms that ensure a UI component completes its rendering pass before the main thread continues, preventing visual glitches like flickering placeholders.
Distinct from Pure Rendering Enforcers: None of the candidates cover blocking the main thread to ensure completion of a UI display pass; most are about GPU sync or purity analysis.
Explore 1 awesome GitHub repository matching user interface & experience · Synchronous Rendering Guards. Refine with filters or upvote what's useful.
AsyncDisplayKit is an asynchronous UI framework and performance library for iOS. It provides a collection of performant alternatives to standard views, allowing developers to build responsive interfaces by offloading layout and rendering tasks to background threads. The framework is centered around a declarative layout engine based on a flexbox model, which calculates element positions and sizes asynchronously. It utilizes a node-based abstraction to wrap native views, enabling the instantiation and configuration of UI hierarchies on background threads to prevent main thread blocking. The sy
Provides a mechanism to block the main thread until a view finishes rendering to prevent placeholder content from appearing.