From ba24781ccf09678d651b5f47dfb55f1eb75b6c72 Mon Sep 17 00:00:00 2001 From: Laurent Date: Tue, 3 Oct 2023 18:00:36 +0200 Subject: [PATCH] Improve the done button visibility --- LeCountdown/Views/StartView.swift | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/LeCountdown/Views/StartView.swift b/LeCountdown/Views/StartView.swift index b612edd..139c89c 100644 --- a/LeCountdown/Views/StartView.swift +++ b/LeCountdown/Views/StartView.swift @@ -77,7 +77,11 @@ struct StartView: View { .font(.title2).fontWeight(.semibold) .padding() .frame(maxWidth: .infinity) - .background(.white) + .foregroundColor(.white) + .background(Color.accentColor) + .cornerRadius(12.0) + .padding(.horizontal, 4.0) + } }