We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f9beb6 commit ae89966Copy full SHA for ae89966
1 file changed
Example/CodeEditSourceEditorExample/CodeEditSourceEditorExample/Views/ContentView.swift
@@ -66,20 +66,26 @@ struct ContentView: View {
66
}
67
68
Spacer()
69
- if isInLongParse {
70
- HStack(spacing: 5) {
71
- ProgressView()
72
- .controlSize(.small)
73
- Text("Parsing Document")
+ Group {
+ if isInLongParse {
+ HStack(spacing: 5) {
+ ProgressView()
+ .controlSize(.small)
74
+ Text("Parsing Document")
75
+ }
76
+ } else {
77
+ Text(getLabel(cursorPositions))
78
- } else {
- Text(getLabel(cursorPositions))
79
80
+ .foregroundStyle(.secondary)
81
Divider()
82
.frame(height: 12)
83
LanguagePicker(language: $language)
84
.buttonStyle(.borderless)
85
86
+ .font(.subheadline)
87
+ .fontWeight(.medium)
88
89
.padding(.horizontal, 8)
90
.frame(height: 28)
91
0 commit comments