|
|
|
@ -42,7 +42,7 @@ struct StartView: View { |
|
|
|
.frame(maxWidth: .infinity, maxHeight: .infinity) |
|
|
|
.frame(maxWidth: .infinity, maxHeight: .infinity) |
|
|
|
.foregroundColor(.white) |
|
|
|
.foregroundColor(.white) |
|
|
|
.background(Color.accentColor) |
|
|
|
.background(Color.accentColor) |
|
|
|
.cornerRadius(8.0) |
|
|
|
.cornerRadius(12.0) |
|
|
|
}.sheet(isPresented: self.$showTimerScreen) { |
|
|
|
}.sheet(isPresented: self.$showTimerScreen) { |
|
|
|
NewCountdownView(isPresented: $showTimerScreen) |
|
|
|
NewCountdownView(isPresented: $showTimerScreen) |
|
|
|
.environment(\.managedObjectContext, viewContext) |
|
|
|
.environment(\.managedObjectContext, viewContext) |
|
|
|
@ -60,7 +60,7 @@ struct StartView: View { |
|
|
|
.frame(maxWidth: .infinity, maxHeight: .infinity) |
|
|
|
.frame(maxWidth: .infinity, maxHeight: .infinity) |
|
|
|
.foregroundColor(.white) |
|
|
|
.foregroundColor(.white) |
|
|
|
.background(Color.accentColor) |
|
|
|
.background(Color.accentColor) |
|
|
|
.cornerRadius(8.0) |
|
|
|
.cornerRadius(12.0) |
|
|
|
}.sheet(isPresented: self.$showStopwatchScreen) { |
|
|
|
}.sheet(isPresented: self.$showStopwatchScreen) { |
|
|
|
NewStopwatchView(isPresented: $showStopwatchScreen) |
|
|
|
NewStopwatchView(isPresented: $showStopwatchScreen) |
|
|
|
.environment(\.managedObjectContext, viewContext) |
|
|
|
.environment(\.managedObjectContext, viewContext) |
|
|
|
|