UI improvement

main
Laurent 2 years ago
parent 434b442726
commit 7d39da6ee9
  1. 4
      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)

Loading…
Cancel
Save