We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e4bec8 commit c516e7cCopy full SHA for c516e7c
CodeEdit/Features/Settings/SettingsView.swift
@@ -144,14 +144,17 @@ struct SettingsView: View {
144
145
var body: some View {
146
NavigationSplitView {
147
+ List { }
148
+ .searchable(text: $searchText, placement: .sidebar, prompt: "Search")
149
+ .scrollDisabled(true)
150
+ .frame(height: 30)
151
List(selection: $selectedPage) {
152
Section {
153
ForEach(Self.pages) { pageAndSettings in
154
results(pageAndSettings.page, pageAndSettings.settings)
155
}
156
157
- .searchable(text: $searchText, placement: .sidebar, prompt: "Search")
158
.navigationSplitViewColumnWidth(215)
159
} detail: {
160
Group {
0 commit comments