bug fixes
This commit is contained in:
parent
7d448e79de
commit
ef6124e72e
1 changed files with 11 additions and 0 deletions
|
|
@ -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<String>, isEnabled: Binding<Bool>, keyboard: UIKeyboardType = .default) -> some View {
|
||||
|
|
|
|||
Loading…
Reference in a new issue