Does anyone know how to combine static content wit...
# compose-desktop
j
Does anyone know how to combine static content with a
LazyVerticalGrid
?
I’d like the “Hello darkness my old friend, I’ve come to talk with you again” message to scroll as well when the user scrolls thru photo’s
👍 1
k
As a sticky header or as a part of the full vertical stream?
j
Full vertical stream I think 😄 It should scroll just like the other elements
j
Thank you for the link!
I’m using
_GridCells_.Adaptive(minSize = 128._dp_)
I think I’d have to calculate how many spans I have available manually?
Copy code
item(span = {
                    GridItemSpan(maxLineSpan)
                }) {
                    Text(text = "Search")
                }
Awwww yeaah