https://kotlinlang.org logo
#compose
Title
# compose
v

Vincent tiensi

03/25/2020, 7:10 AM
Hi, is there any support for nested scrolling like NestedScrollView { RecyclerView } ? Right now I’m using a VerticalScroller wrapping an AdapterList which results in a screen with endless scrolling.
a

Adam Powell

03/25/2020, 1:01 PM
No plans to fundamentally change what happens if you put a RecyclerView inside a ScrollView. If an AdapterList is measured with infinite max constraints and it's told to fill what it can, it will attempt to compose as much of its data set as it has available. It should work, but you'll lose any windowing benefits of AdapterList.
👍 1