LazyList

inline fun ResourcesScope.LazyList(    orientation: Int = RecyclerView.VERTICAL,     snapMode: Int = SnapUtil.SNAP_NONE,     snapHelper: SnapHelper? = null,     snapToStartOffset: Dimen = 0.dp,     reverse: Boolean = false,     crossAxisWrapMode: CrossAxisWrapMode = CrossAxisWrapMode.NoWrap,     mainAxisWrapContent: Boolean = false,     itemAnimator: RecyclerView.ItemAnimator? = CollectionRecyclerSpec.itemAnimator,     itemDecoration: RecyclerView.ItemDecoration? = null,     clipToPadding: Boolean? = null,     clipChildren: Boolean? = null,     startPadding: Dimen? = null,     endPadding: Dimen? = null,     topPadding: Dimen? = null,     bottomPadding: Dimen? = null,     nestedScrollingEnabled: Boolean? = null,     scrollBarStyle: Int? = null,     recyclerViewId: Int? = null,     overScrollMode: Int? = null,     refreshProgressBarBackgroundColor: Int? = null,     refreshProgressBarColor: Int? = null,     touchInterceptor: LithoRecyclerView.TouchInterceptor? = null,     itemTouchListener: RecyclerView.OnItemTouchListener? = null,     sectionTreeTag: String? = null,     startupLogger: LithoStartupLogger? = null,     style: Style? = null,     noinline onViewportChanged: OnViewportChanged? = null,     noinline onDataBound: OnDataBound? = null,     handle: Handle? = null,     noinline onPullToRefresh: () -> Unit? = null,     onNearEnd: OnNearCallback? = null,     onScrollListener: RecyclerView.OnScrollListener? = null,     onScrollListeners: List<RecyclerView.OnScrollListener?>? = null,     lazyCollectionController: LazyCollectionController? = null,     noinline onDataRendered: OnDataRendered? = null,     rangeRatio: Float? = null,     useBackgroundChangeSets: Boolean = false,     preAllocationHandler: PreAllocationHandler? = context.lithoConfiguration.componentsConfig.preAllocationHandler,     childEquivalenceIncludesCommonProps: Boolean = true,     alwaysDetectDuplicates: Boolean = false,     isLeftFadingEnabled: Boolean = true,     isRightFadingEnabled: Boolean = true,     isTopFadingEnabled: Boolean = true,     isBottomFadingEnabled: Boolean = true,     fadingEdgeLength: Dimen? = null,     shouldExcludeFromIncrementalMount: Boolean = false,     isCircular: Boolean = false,     enableStableIds: Boolean = context.lithoConfiguration.componentsConfig.useStableIdsInRecyclerBinder,     linearLayoutInfoFactory: LinearLayoutInfoFactory? = null,     onBeforeLayout: LithoRecyclerView.OnBeforeLayoutListener? = null,     onAfterLayout: LithoRecyclerView.OnAfterLayoutListener? = null,     crossinline init: LazyListScope.() -> Unit): Component

A scrollable collection of components arranged linearly