Is there something special I need to do to enable ...
# compose
a
Is there something special I need to do to enable overscroll glowing effects on a scrollable Column? (code in thread)
no red 1
Copy code
Column(
        modifier = Modifier
            .verticalScroll(state = rememberScrollState()),
    ) {
        content()
    }
The above code does not seem to render an overscroll glowing effect
I am on alpha-04, overscroll glowing works for LazyColumns, but not a regular Column that has a scrolling modifier
Actually it works now, strange.
a
I think overscroll was added recently for LazyColumn