From 248b6720fca1c46734aab41fa6e6ee91c5061fb9 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Thu, 2 Jul 2020 13:38:02 -0500 Subject: [PATCH] Delete dead code --- .../Sidebar/CompactSidebarContainerView.swift | 32 ------------------- 1 file changed, 32 deletions(-) diff --git a/Multiplatform/Shared/Sidebar/CompactSidebarContainerView.swift b/Multiplatform/Shared/Sidebar/CompactSidebarContainerView.swift index 23d986b46..a14b01503 100644 --- a/Multiplatform/Shared/Sidebar/CompactSidebarContainerView.swift +++ b/Multiplatform/Shared/Sidebar/CompactSidebarContainerView.swift @@ -30,38 +30,6 @@ struct CompactSidebarContainerView: View { },alignment: .bottom) } - - var compactToolBar: some View { - VStack { - Divider() - HStack(alignment: .center) { - Button(action: { - showSettings = true - }, label: { - Image(systemName: "gear") - .font(.title3) - .foregroundColor(.accentColor) - }).help("Settings") - Spacer() - Text("Last updated") - .font(.caption) - .foregroundColor(.secondary) - Spacer() - Button(action: {}, label: { - Image(systemName: "plus") - .font(.title3) - .foregroundColor(.accentColor) - }).help("Add") - } - .padding(.horizontal, 16) - .padding(.bottom, 12) - .padding(.top, 4) - } - .background(VisualEffectBlur(blurStyle: .systemChromeMaterial).edgesIgnoringSafeArea(.bottom)) - - } - - } struct CompactSidebarContainerView_Previews: PreviewProvider {