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

@ -56,6 +56,7 @@ struct FileListView: View {
ForEach(filteredFiles) { file in
SelectableListItem(selected: selectedFile == file) {
Text(file.id)
.lineLimit(1)
}
.id(file.id)
.onTapGesture {