Skip to content

Commit

Permalink
Merge pull request #959 from Corvus400/bug/fix_settings_screen_issue_…
Browse files Browse the repository at this point in the history
…when_small_phone

🔧 [SettingsScreen]The accessibility text was cut off, so I fixed it.
  • Loading branch information
takahirom authored Sep 4, 2024
2 parents 5b8a4ec + 04525f7 commit 01a5193
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package io.github.droidkaigi.confsched.settings.section

import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.LazyListScope
import androidx.compose.material3.HorizontalDivider
Expand Down Expand Up @@ -34,9 +33,7 @@ fun LazyListScope.accessibility(
) {
item {
Text(
modifier = Modifier
.height(40.dp)
.padding(top = 16.dp),
modifier = Modifier.padding(top = 16.dp),
text = stringResource(SettingsRes.string.section_title_accessibility),
style = MaterialTheme.typography.titleMedium,
)
Expand Down

0 comments on commit 01a5193

Please sign in to comment.