Parcourir la source

Fix glucose view bg color

dnzxy il y a 2 ans
Parent
commit
5bba8af022

+ 1 - 1
FreeAPS/Sources/Modules/Home/View/Header/CurrentGlucoseView.swift

@@ -168,7 +168,7 @@ struct CircleShape: View {
     let color: Color
 
     var body: some View {
-        let colorBackground: Color = colorScheme == .dark ? .black : .white
+        let colorBackground: Color = colorScheme == .dark ? .black.opacity(0.8) : .white
 
         Circle()
             .stroke(color, lineWidth: 10)