type UIListView.RenderOptions
An object that contains options for (asynchronous) list rendering.
type RenderOptions = {
async?: boolean;
delayEach?: number;
maxDelayCount?: number;
};Notes
- Set
asyncto true to enable asynchronous rendering. - Set
delayEachto a number of milliseconds, to delay rendering eah consecutive item in the list. - Set
maxDelayCountto the maximum number of items to render with delay (to avoid taking too long to render a long list)
Instance members
async
Set to true to enable asynchronous rendering.delayEach
Set to a number of milliseconds to delay rendering each consecutive item in the list.maxDelayCount
The maximum number of items to render with delay (to avoid taking too long to render a long list).
Related
class UIListView
A view wrapper that manages nested views for each item in a list.
