From 8d2a8ed105dd68d0d9fd7ae17f91033759a266dd Mon Sep 17 00:00:00 2001 From: Tim Bert <5411131+timbms@users.noreply.github.com> Date: Thu, 31 Oct 2024 13:48:37 +0100 Subject: [PATCH] Labels in TabView of watch app corrected Signed-off-by: Tim Bert <5411131+timbms@users.noreply.github.com> --- openHABWatch/OpenHABWatch.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/openHABWatch/OpenHABWatch.swift b/openHABWatch/OpenHABWatch.swift index 8cb8ac1d..3a207800 100644 --- a/openHABWatch/OpenHABWatch.swift +++ b/openHABWatch/OpenHABWatch.swift @@ -26,13 +26,14 @@ struct OpenHABWatch: App { TabView { ContentView(viewModel: userData) .tabItem { - Label("Received", systemImage: "tray.and.arrow.down.fill") + Label("Sitemap", systemSymbol: .circleFill) } PreferencesSwiftUIView() .tabItem { - Label("Preferences", systemImage: "person.crop.circle.fill") + Label("Preferences", systemSymbol: .circleFill) } } + .tabViewStyle(.page) .environmentObject(settings) .task { let center = UNUserNotificationCenter.current()