I have a problem in compose, so when i dont use a ...
# compose
y
I have a problem in compose, so when i dont use a sticky header the verticall scroll will show and scroll fine but when i have a stickyHeader the verticall Scroll will show but it dosent scroll at all can anyone help ?
Copy code
LazyColumn(
    state = lazyColumnState,
    modifier = modifier
        .size(
            width = 400.dp,
            height = if (options.size >= 4) 4 * optionHeight
            else optionHeight * options.size,
        )
        .border(
            width = 1.dp,
            color = MaterialTheme.qrColorScheme.borderPrimary,
            shape = RoundedCornerShape(10.dp),
        )
        .drawVerticalScrollbar(lazyColumnState, thickness = 1.dp),
) {
    stickyHeader(key = "header") {
        QrToolbar()
    }
//more code here
}