From 965dbdfeea8c49e385c4a1591bb73c7bb1131834 Mon Sep 17 00:00:00 2001 From: ComicSANS Date: Sat, 5 Oct 2024 18:26:35 +0300 Subject: [PATCH] Updated ConfigurationModeButton title text alignment --- .../screen/setup/components/ConfigurationModeButton.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/presentation/src/main/java/com/shifthackz/aisdv1/presentation/screen/setup/components/ConfigurationModeButton.kt b/presentation/src/main/java/com/shifthackz/aisdv1/presentation/screen/setup/components/ConfigurationModeButton.kt index c84b0547..39da974d 100644 --- a/presentation/src/main/java/com/shifthackz/aisdv1/presentation/screen/setup/components/ConfigurationModeButton.kt +++ b/presentation/src/main/java/com/shifthackz/aisdv1/presentation/screen/setup/components/ConfigurationModeButton.kt @@ -81,9 +81,9 @@ fun ConfigurationModeButton( Text( modifier = Modifier .align(Alignment.CenterVertically) - .padding(top = 8.dp, bottom = 8.dp), + .padding(vertical = 8.dp), text = mode.getName(), - textAlign = TextAlign.Center, + textAlign = TextAlign.Start, style = MaterialTheme.typography.bodyLarge, ) }