Is there a way to get `progress` of material3 Moda...
# compose
p
Is there a way to get
progress
of material3 ModalBottomSheet? There is a progress parameter in material library, but not in the material3. I guess it may be cause material3 modal is now popup. 😞
solved 1
found the solution:
Copy code
LaunchedEffect(sheetState) {
        snapshotFlow {
            1f - (sheetState.requireOffset() / screenHeightPx).coerceIn(0f, 1f)
        }.collect { progress ->
            println("Progress: $progress")
        }
    }