Issue description:
- Have an alert dialog with scrollable content:
AlertDialog(
showDialog = showDialog,
title = "Title",
onDismiss = onDismissRequest,
) {
repeat(25) { rowIdx ->
item {
Text(rowIdx.toString())
}
}
}
- Enter the alert dialog and scroll down.
- Swipe back to the previous screen.
- Show the alert dialog again.
Expected result:
The alert dialog scroll position should be at the top.
Actual result:
The alert dialog remembers the previous scroll position.
Dependency:
horologist-compose-material:0.6.21