Limit list item lines

This commit is contained in:
Christoph Hagen
2025-02-17 13:39:03 +01:00
parent 964c644922
commit 1e5fed5bbc
4 changed files with 4 additions and 0 deletions

View File

@ -32,6 +32,7 @@ private struct LocalizedPageListItem: View {
var body: some View {
Text(page.title)
.lineLimit(1)
}
}