Is there a way for `ScrollableColumn` to show actu...
# compose-desktop
o
Is there a way for
ScrollableColumn
to show actual scroll bars, according to system settings? E.g. autohide on mac, etc.
d
No sadly, I've been searching for ages. The best we've got now is
VerticalScrollbar
and it's desktop only.
o
Btw, VerticalScrollbar example has errors:
ScrollableColumn(state = state)
should be
ScrollableColumn(scrollState = state)
Also
Copy code
VerticalScrollbar(
        Modifier.align(Alignment.CenterEnd).fillMaxHeight(),
        rememberScrollbarAdapter(state)
    )
parameters should be in reverse order
d
Oh yeah, modifiers should come after the required params.
i
Native theming of scrollbars is one of the things we need to think about. In the future maybe Compose for Desktop will draw native looking scrollbars for each platform.
Btw, VerticalScrollbar example has errors
Thanks! I think we need a tool that checks for us that all tutorials are compilable https://github.com/JetBrains/compose-jb/issues/226