| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- import SwiftUI
- struct Triangle: Shape {
- /// Flag to be able to adjust size based on Apple Watch size
- let isSmallDevice: Bool
- /// Creates a triangle shape pointing to the right
- func path(in rect: CGRect) -> Path {
- var path = Path()
- // Draw the triangle pointing to the right
- path.move(to: CGPoint(x: rect.maxX - (isSmallDevice ? 7.5 : 9), y: rect.midY))
- path.addLine(to: CGPoint(x: rect.minX, y: rect.minY))
- path.addQuadCurve(
- to: CGPoint(x: rect.minX, y: rect.maxY),
- control: CGPoint(x: rect.midX - (isSmallDevice ? 5 : 7), y: rect.midY)
- )
- path.closeSubpath()
- return path
- }
- }
- /// A view that displays a circular trend indicator with a directional triangle
- struct TrendShape: View {
- /// Rotation angle in degrees for the trend direction
- let rotationDegrees: Double
- /// Flag to be able to adjust size based on Apple Watch size
- let isSmallDevice: Bool
- // Angular gradient for the outer circle, transitioning through various blues and purples
- private let angularGradient = AngularGradient(
- colors: [
- Color(red: 0.7215686275, green: 0.3411764706, blue: 1), // #B857FF
- Color(red: 0.6235294118, green: 0.4235294118, blue: 0.9803921569), // #9F6CFA
- Color(red: 0.4862745098, green: 0.5450980392, blue: 0.9529411765), // #7C8BF3
- Color(red: 0.3411764706, green: 0.6666666667, blue: 0.9254901961), // #57AAEC
- Color(red: 0.262745098, green: 0.7333333333, blue: 0.9137254902), // #43BBE9
- Color(red: 0.7215686275, green: 0.3411764706, blue: 1) // #B857FF (repeated for seamless transition)
- ],
- center: .center,
- startAngle: .degrees(270),
- endAngle: .degrees(-90)
- )
- // Color for the direction indicator triangle
- private let triangleColor = Color(red: 0.262745098, green: 0.7333333333, blue: 0.9137254902) // #43BBE9
- var body: some View {
- let strokeWidth: CGFloat = isSmallDevice ? 4 : 5
- let circleSize: CGFloat = isSmallDevice ? 74 : 92
- let triangleSize: CGFloat = isSmallDevice ? 16 : 20
- let offset: CGFloat = isSmallDevice ? 47.5 : 59
- ZStack {
- // Outer circle with gradient
- Circle()
- .stroke(angularGradient, lineWidth: strokeWidth)
- .frame(width: circleSize, height: circleSize)
- .background(Circle().fill(Color.black))
- // Triangle with the color of the last gradient color
- Triangle(isSmallDevice: isSmallDevice)
- .fill(triangleColor)
- .frame(width: triangleSize, height: triangleSize)
- .offset(x: offset)
- }
- .rotationEffect(.degrees(rotationDegrees))
- .shadow(color: Color.black.opacity(0.33), radius: 3)
- }
- }
|