diff --git a/ios/Platform/Platform/Features/Fitness/Views/MealSectionView.swift b/ios/Platform/Platform/Features/Fitness/Views/MealSectionView.swift index eabc170..69da0f8 100644 --- a/ios/Platform/Platform/Features/Fitness/Views/MealSectionView.swift +++ b/ios/Platform/Platform/Features/Fitness/Views/MealSectionView.swift @@ -45,12 +45,14 @@ struct MealSectionView: View { Spacer() - Text("\(Int(totalCalories))") - .font(.title3.weight(.bold)) - .foregroundStyle(Color.mealColor(for: mealType.rawValue)) - + Text(" kcal") - .font(.caption.weight(.medium)) - .foregroundStyle(Color.textSecondary) + HStack(spacing: 2) { + Text("\(Int(totalCalories))") + .font(.title3.weight(.bold)) + .foregroundStyle(Color.mealColor(for: mealType.rawValue)) + Text("kcal") + .font(.caption.weight(.medium)) + .foregroundStyle(Color.textSecondary) + } Image(systemName: "chevron.right") .font(.caption.weight(.medium))