From ebc1401531189fcd8d4b5026b3252e7050f89ad5 Mon Sep 17 00:00:00 2001 From: Ronaldo Pace Date: Thu, 4 Jul 2024 10:41:50 +0200 Subject: [PATCH] Stretch contributors list width. Without it the touch to scroll the list only works if directly touching the names themselves. Now when right-hand holding and scrolling with the thumb works reliably. --- .../java/de/berlindroid/zeapp/zeui/zeabout/ZeAboutScreen.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zeapp/android/src/main/java/de/berlindroid/zeapp/zeui/zeabout/ZeAboutScreen.kt b/zeapp/android/src/main/java/de/berlindroid/zeapp/zeui/zeabout/ZeAboutScreen.kt index 8d8222c3..9614606e 100644 --- a/zeapp/android/src/main/java/de/berlindroid/zeapp/zeui/zeabout/ZeAboutScreen.kt +++ b/zeapp/android/src/main/java/de/berlindroid/zeapp/zeui/zeabout/ZeAboutScreen.kt @@ -7,6 +7,7 @@ import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.PaddingValues import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.size import androidx.compose.foundation.lazy.LazyColumn @@ -53,7 +54,7 @@ fun ZeAbout( Text( text = "Running on '${getPlatform()}'.", ) - LazyColumn { + LazyColumn(Modifier.fillMaxWidth()) { items(lines) { line -> Row( verticalAlignment = Alignment.CenterVertically,