toggle menu
redwood
0.15.0
common
switch theme
search in API
redwood-lazylayout-compose
/
app.cash.redwood.lazylayout.compose
/
RefreshableLazyList
Refreshable
Lazy
List
@
Composable
fun
RefreshableLazyList
(
isVertical
:
Boolean
,
onViewportChanged
:
(
firstVisibleItemIndex
:
Int
,
lastVisibleItemIndex
:
Int
)
->
Unit
,
itemsBefore
:
Int
,
itemsAfter
:
Int
,
refreshing
:
Boolean
,
onRefresh
:
(
)
->
Unit
?
,
width
:
Constraint
,
height
:
Constraint
,
margin
:
Margin
,
crossAxisAlignment
:
CrossAxisAlignment
,
scrollItemIndex
:
ScrollItemIndex
,
pullRefreshContentColor
:
UInt
,
modifier
:
Modifier
=
Modifier
,
placeholder
:
@
Composable
(
)
->
Unit
,
items
:
@
Composable
(
)
->
Unit
)