@@ -12,26 +12,17 @@ import HealthKit
12
12
import LoopCore
13
13
14
14
struct GlucoseView : View {
15
-
16
15
var entry : StatusWidgetTimelimeEntry
17
16
18
17
var body : some View {
19
18
VStack ( alignment: . center, spacing: 0 ) {
20
19
HStack ( spacing: 2 ) {
21
- if let glucose = entry. currentGlucose,
22
- !entry. glucoseIsStale,
23
- let unit = entry. unit
24
- {
25
- let quantity = glucose. quantity
26
- let glucoseFormatter = NumberFormatter . glucoseFormatter ( for: unit)
27
- if let glucoseString = glucoseFormatter. string ( from: quantity. doubleValue ( for: unit) ) {
28
- Text ( glucoseString)
29
- . font ( . system( size: 24 , weight: . heavy, design: . default) )
30
- }
31
- else {
32
- Text ( " ?? " )
33
- . font ( . system( size: 24 , weight: . heavy, design: . default) )
34
- }
20
+ if !entry. glucoseIsStale,
21
+ let glucoseQuantity = entry. currentGlucose? . quantity,
22
+ let unit = entry. unit,
23
+ let glucoseString = NumberFormatter . glucoseFormatter ( for: unit) . string ( from: glucoseQuantity. doubleValue ( for: unit) ) {
24
+ Text ( glucoseString)
25
+ . font ( . system( size: 24 , weight: . heavy, design: . default) )
35
26
}
36
27
else {
37
28
Text ( " --- " )
@@ -42,26 +33,22 @@ struct GlucoseView: View {
42
33
Image ( systemName: trendImageName)
43
34
}
44
35
}
45
- // Prevent truncation of text
46
- . fixedSize ( horizontal: true , vertical: false )
47
- . foregroundColor ( entry. glucoseStatusIsStale ? Color ( UIColor . systemGray3) : . primary)
36
+ . foregroundColor ( entry. glucoseStatusIsStale ? . staleGray : . primary)
48
37
49
- let unitString = entry. unit == nil ? " - " : entry . unit! . localizedShortUnitString
38
+ let unitString = entry. unit? . localizedShortUnitString ?? " - "
50
39
if let delta = entry. delta, let unit = entry. unit {
51
40
let deltaValue = delta. doubleValue ( for: unit)
52
41
let numberFormatter = NumberFormatter . glucoseFormatter ( for: unit)
53
42
let deltaString = ( deltaValue < 0 ? " - " : " + " ) + numberFormatter. string ( from: abs ( deltaValue) ) !
54
43
55
44
Text ( deltaString + " " + unitString)
56
- // Dynamic text causes string to be cut off
57
- . font ( . system( size: 13 ) )
58
- . foregroundColor ( entry. glucoseStatusIsStale ? Color ( UIColor . systemGray3) : Color ( UIColor . secondaryLabel) )
59
- . fixedSize ( horizontal: true , vertical: true )
45
+ . font ( . footnote)
46
+ . foregroundColor ( entry. glucoseStatusIsStale ? . staleGray : . secondary)
60
47
}
61
48
else {
62
49
Text ( unitString)
63
50
. font ( . footnote)
64
- . foregroundColor ( entry. glucoseStatusIsStale ? Color ( UIColor . systemGray3 ) : Color ( UIColor . secondaryLabel ) )
51
+ . foregroundColor ( entry. glucoseStatusIsStale ? . staleGray : . secondary )
65
52
}
66
53
}
67
54
}
0 commit comments