@@ -35,17 +35,19 @@ struct BodyCompResults: View {
3535 VStack ( spacing: Autoscale . convert ( 16 ) ) {
3636 HStack ( spacing: Autoscale . convert ( 16 ) ) {
3737 Box ( title: " Body Fat " , number: bodyCompResponse. bodyFat. value, metric: " % " , status: bodyCompResponse. bodyFat. status, errorDescription: bodyCompResponse. bodyFat. errorDescription)
38-
39- Box ( title: " Gynoid Fat " , number: UserData . default. convertToMetricIfNeeded ( lbsOrKg: bodyCompResponse. gynoidFat . value) , metric: weightLabel, status: bodyCompResponse. gynoidFat . status, errorDescription: bodyCompResponse. gynoidFat . errorDescription)
38+
39+ Box ( title: " Lean Mass " , number: UserData . default. convertToMetricIfNeeded ( lbsOrKg: bodyCompResponse. leanMass . value) , metric: weightLabel, status: bodyCompResponse. leanMass . status, errorDescription: bodyCompResponse. leanMass . errorDescription)
4040 }
4141
4242 HStack ( spacing: Autoscale . convert ( 16 ) ) {
4343 Box ( title: " Fat Mass " , number: UserData . default. convertToMetricIfNeeded ( lbsOrKg: bodyCompResponse. fatMass. value) , metric: weightLabel, status: bodyCompResponse. fatMass. status, errorDescription: bodyCompResponse. fatMass. errorDescription)
44+
45+ Box ( title: " Weight " , number: UserData . default. weight, metric: weightLabel, status: StatusValue . Status. complete, errorDescription: nil )
4446 }
4547
4648 HStack ( spacing: Autoscale . convert ( 16 ) ) {
4749 Box ( title: " Android Fat " , number: UserData . default. convertToMetricIfNeeded ( lbsOrKg: bodyCompResponse. androidFat. value) , metric: weightLabel, status: bodyCompResponse. androidFat. status, errorDescription: bodyCompResponse. androidFat. errorDescription)
48-
50+
4951 Box ( title: " Gynoid Fat " , number: UserData . default. convertToMetricIfNeeded ( lbsOrKg: bodyCompResponse. gynoidFat. value) , metric: weightLabel, status: bodyCompResponse. gynoidFat. status, errorDescription: bodyCompResponse. gynoidFat. errorDescription)
5052 }
5153
@@ -58,15 +60,15 @@ struct BodyCompResults: View {
5860
5961 Spacer ( ) . frame ( height: Autoscale . convert ( 50 ) )
6062
61- ResultsTitle ( text: " Additional metrics available to your users when demographic information is provided " , lines: 3 )
62-
63- text
64-
65- HStack ( spacing: Autoscale . convert ( 16 ) ) {
66- Box ( title: " Metabolic Rate " , number: 1.168 , metric: " kCal " , status: StatusValue . Status. complete)
67-
68- Box ( title: " Body Fat " , number: 25 , metric: " % " , status: StatusValue . Status. complete)
69- } . padding ( . top, Autoscale . convert ( 24 ) )
63+ // ResultsTitle(text: "Additional metrics available to your users when demographic information is provided", lines: 3)
64+ //
65+ // text
66+ //
67+ // HStack(spacing: Autoscale.convert(16)) {
68+ // Box(title: "Metabolic Rate", number: 1.168, metric: "kCal", status: StatusValue.Status.complete)
69+ //
70+ // Box(title: "Body Fat", number: 25, metric: "%", status: StatusValue.Status.complete)
71+ // }.padding(.top, Autoscale.convert(24))
7072
7173 Spacer ( ) . frame ( height: Autoscale . convert ( 80 ) )
7274
0 commit comments