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 e8cf1ad commit cfba563Copy full SHA for cfba563
Shared/Supporting Files/Views/SampleInfoView.swift
@@ -43,6 +43,7 @@ struct SampleInfoView: View {
43
}
44
45
.pickerStyle(.segmented)
46
+ .frame(idealWidth: 320)
47
48
49
ToolbarItem(placement: .confirmationAction) {
@@ -51,13 +52,15 @@ struct SampleInfoView: View {
51
52
53
54
- ToolbarItem(placement: .bottomBar) {
55
+ ToolbarItemGroup(placement: .bottomBar) {
56
if informationMode == .code {
57
+ Spacer()
58
Picker("Source Code File Picker", selection: $selectedSnippetIndex) {
59
ForEach(sample.snippetURLs.indices, id: \.self) { index in
60
Text(sample.snippets[index].dropLast(6))
61
62
63
64
65
66
0 commit comments