From 72421122181e1000bdebe824e46df5c38828cacf Mon Sep 17 00:00:00 2001 From: William Brawner Date: Thu, 6 Jan 2022 18:25:22 -0600 Subject: [PATCH] Use multi-column layout on desktop/iPad --- Twigs/SidebarBudgetView.swift | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Twigs/SidebarBudgetView.swift b/Twigs/SidebarBudgetView.swift index ecdccb0..791e69a 100644 --- a/Twigs/SidebarBudgetView.swift +++ b/Twigs/SidebarBudgetView.swift @@ -51,7 +51,11 @@ struct SidebarBudgetView: View { BudgetListsView() } .navigationTitle(budget.name) - }.navigationViewStyle(.columns) + EmptyView() + if self.tabSelection ?? 0 > 0 { + EmptyView() + } + } } else { ActivityIndicator(isAnimating: .constant(true), style: .large) }