From 6a3688afc6ad60b2ebc15a1b1c697d5ec6749dee Mon Sep 17 00:00:00 2001 From: Robert Klacso Date: Fri, 18 Aug 2023 09:40:00 +0200 Subject: [PATCH] change contentview --- SnapshotArticle/ContentView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SnapshotArticle/ContentView.swift b/SnapshotArticle/ContentView.swift index d3d0edc..c9cbb34 100644 --- a/SnapshotArticle/ContentView.swift +++ b/SnapshotArticle/ContentView.swift @@ -11,9 +11,9 @@ struct ContentView: View { var body: some View { NavigationView { VStack { - Image(systemName: "hand.wave") + Image(systemName: "globe") .imageScale(.large) - .foregroundColor(.black.opacity(0.4)) + .foregroundColor(.blue.opacity(0.4)) NavigationLink(destination: SecondView()) { Text("Hello World!") }