From 7d39da6ee99b3bed920ba6cf0c327877a438d623 Mon Sep 17 00:00:00 2001 From: Laurent Date: Wed, 27 Sep 2023 15:20:40 +0200 Subject: [PATCH] UI improvement --- LeCountdown/Views/StartView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LeCountdown/Views/StartView.swift b/LeCountdown/Views/StartView.swift index bca4b17..b612edd 100644 --- a/LeCountdown/Views/StartView.swift +++ b/LeCountdown/Views/StartView.swift @@ -42,7 +42,7 @@ struct StartView: View { .frame(maxWidth: .infinity, maxHeight: .infinity) .foregroundColor(.white) .background(Color.accentColor) - .cornerRadius(8.0) + .cornerRadius(12.0) }.sheet(isPresented: self.$showTimerScreen) { NewCountdownView(isPresented: $showTimerScreen) .environment(\.managedObjectContext, viewContext) @@ -60,7 +60,7 @@ struct StartView: View { .frame(maxWidth: .infinity, maxHeight: .infinity) .foregroundColor(.white) .background(Color.accentColor) - .cornerRadius(8.0) + .cornerRadius(12.0) }.sheet(isPresented: self.$showStopwatchScreen) { NewStopwatchView(isPresented: $showStopwatchScreen) .environment(\.managedObjectContext, viewContext)