Skip to content

Commit a74f557

Browse files
committed
fix: row detail pagination label truncation — add fixedSize, use "of" separator
1 parent e5efccf commit a74f557

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

TableProMobile/TableProMobile/Views/RowDetailView.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,11 @@ struct RowDetailView: View {
166166

167167
Spacer()
168168

169-
Text("\(currentIndex + 1) / \(rows.count)")
169+
Text("\(currentIndex + 1) of \(rows.count)")
170170
.font(.footnote)
171171
.foregroundStyle(.secondary)
172172
.monospacedDigit()
173+
.fixedSize()
173174

174175
Spacer()
175176

0 commit comments

Comments
 (0)