| 123456789101112131415161718192021222324252627282930 |
- //
- // CorrectionRangeOverridesExtension.swift
- // LoopKitUI
- //
- // Created by Rick Pasetto on 7/15/20.
- // Copyright © 2020 LoopKit Authors. All rights reserved.
- //
- import LoopKit
- import SwiftUI
- extension CorrectionRangeOverrides.Preset {
- public func icon(usingCarbTintColor carbTintColor: Color,
- orGlucoseTintColor glucoseTintColor: Color) -> some View
- {
- switch self {
- case .preMeal:
- return icon(named: "Pre-Meal", tinted: carbTintColor)
- case .workout:
- return icon(named: "workout", tinted: glucoseTintColor)
- }
- }
-
- private func icon(named name: String, tinted color: Color) -> some View {
- Image(name)
- .renderingMode(.template)
- .foregroundColor(color)
- }
- }
|