A Compose screen with a long list is janky while scrolling - walk through how you'd find and fix the recomposition problem causing it.
Jank in a Compose list is usually excessive or unstable recomposition, caused by unstable parameter types, reading state too high in the tree, or lambdas that break skipping, found with the Layout Inspector's recomposition counts and fixed by narrowing what each composable reads.