Jon Mårtensson пре 4 година
родитељ
комит
fb0f7fdd53
1 измењених фајлова са 5 додато и 4 уклоњено
  1. 5 4
      FreeAPSWatch WatchKit Extension/Views/MainView.swift

+ 5 - 4
FreeAPSWatch WatchKit Extension/Views/MainView.swift

@@ -39,10 +39,10 @@ struct MainView: View {
             HStack(alignment: .top) {
                 VStack(alignment: .leading) {
                     HStack {
-                        Text(state.glucose).font(.largeTitle).minimumScaleFactor(0.5)
+                        Text(state.glucose).font(.largeTitle)
                         Text(state.trend)
                     }
-                    Text(state.delta).font(.caption2)
+                    Text(state.delta).font(.caption2).foregroundColor(.gray)
                 }
                 Spacer()
 
@@ -52,13 +52,14 @@ struct MainView: View {
                     }
 
                     if state.lastLoopDate != nil {
-                        Text(timeString).font(.caption2)
+                        Text(timeString).font(.caption2).foregroundColor(.gray)
                     } else {
-                        Text("--").font(.caption2)
+                        Text("--").font(.caption2).foregroundColor(.gray)
                     }
                 }
             }
             Spacer()
+            Spacer()
             HStack {
                 Text(iobFormatter.string(from: (state.cob ?? 0) as NSNumber)!).font(.caption2)
                 Text("g").foregroundColor(.loopGreen)