diff --git a/iOS/Views/Companion/TrackEditorView.swift b/iOS/Views/Companion/TrackEditorView.swift index 2e38c91..6dd994e 100644 --- a/iOS/Views/Companion/TrackEditorView.swift +++ b/iOS/Views/Companion/TrackEditorView.swift @@ -277,6 +277,17 @@ struct TrackEditorView: View { } } + // MARK: - Info Row (read-only) + + private func infoRow(_ label: String, _ value: String) -> some View { + HStack { + Text(label).foregroundColor(.gray) + Spacer() + Text(value).foregroundColor(.white.opacity(0.7)).lineLimit(1) + } + .font(.system(size: 14)) + } + // MARK: - Checkmark Field private func checkField(_ label: String, text: Binding, isEnabled: Binding, keyboard: UIKeyboardType = .default) -> some View {