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

Smorg

02/24/2021, 10:12 AM
Any recommendations for an implementation of Collapsible App bar in compose please?
j

jossiwolf

02/24/2021, 10:34 AM
You should be able to roll your own implementation using
Modifier.swipeable
and
SwipeableState
fairly easily I think🙂 (that being said, let's hope it gets added to the Material library soon)
s

Smorg

02/24/2021, 10:45 AM
Cool, thanks @jossiwolf. Very new to compose, but I will just look at Sunflower’s implementation for now.