39 lines
910 B
Swift
39 lines
910 B
Swift
//
|
|
// Swiftfin is subject to the terms of the Mozilla Public
|
|
// License, v2.0. If a copy of the MPL was not distributed with this
|
|
// file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
//
|
|
// Copyright (c) 2023 Jellyfin & Jellyfin Contributors
|
|
//
|
|
|
|
import Defaults
|
|
import SwiftUI
|
|
|
|
struct UnwatchedIndicator: View {
|
|
|
|
let size: CGFloat
|
|
|
|
var body: some View {
|
|
ZStack(alignment: .topTrailing) {
|
|
Color.clear
|
|
|
|
Q3RightTriangle()
|
|
.frame(width: size, height: size)
|
|
}
|
|
}
|
|
}
|
|
|
|
struct Q3RightTriangle: Shape {
|
|
|
|
func path(in rect: CGRect) -> Path {
|
|
var path = Path()
|
|
|
|
path.move(to: CGPoint(x: rect.maxX, y: rect.minY))
|
|
path.addLine(to: CGPoint(x: rect.minX, y: rect.minY))
|
|
path.addLine(to: CGPoint(x: rect.maxX, y: rect.maxY))
|
|
path.addLine(to: CGPoint(x: rect.maxX, y: rect.minY))
|
|
|
|
return path
|
|
}
|
|
}
|