Adding plus button

This commit is contained in:
Selim Mustafaev 2021-08-14 16:21:42 +03:00
parent 8ddab46918
commit c80f073f03

View File

@ -40,13 +40,19 @@ struct SidebarView: View {
.collapsible(false) .collapsible(false)
} }
.frame(minWidth: 180) .frame(minWidth: 180)
// .toolbar { .toolbar {
// ToolbarItem(placement: .primaryAction) { ToolbarItem {
// Button("xxx") { Spacer()
// }
// } ToolbarItem {
// } Button {
// }
} label: {
Image(systemName: "plus")
}
}
}
} }
} }