From 3b2b62865c0950a51da5e12dd13cd6d5d590b046 Mon Sep 17 00:00:00 2001 From: Brummel Date: Fri, 24 Apr 2026 12:24:42 +0200 Subject: [PATCH] Fix: Disable auto-centering on ScalingLazyColumn --- .../main/java/com/doctate/watch/presentation/CaseListScreen.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/watch/wearos/app/src/main/java/com/doctate/watch/presentation/CaseListScreen.kt b/watch/wearos/app/src/main/java/com/doctate/watch/presentation/CaseListScreen.kt index 0b1f09c..439d2e5 100644 --- a/watch/wearos/app/src/main/java/com/doctate/watch/presentation/CaseListScreen.kt +++ b/watch/wearos/app/src/main/java/com/doctate/watch/presentation/CaseListScreen.kt @@ -49,6 +49,7 @@ fun CaseListScreen( ScalingLazyColumn( state = listState, contentPadding = contentPadding, + autoCentering = null, modifier = Modifier.fillMaxSize(), ) { items(cases, key = { it.caseId }) { case ->