47 lines
1.4 KiB
Swift
47 lines
1.4 KiB
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 SwiftUI
|
|
|
|
struct AttributeViewModifier: ViewModifier {
|
|
|
|
enum Style {
|
|
case fill
|
|
case outline
|
|
}
|
|
|
|
let style: Style
|
|
|
|
func body(content: Content) -> some View {
|
|
if style == .fill {
|
|
content
|
|
.font(.caption.weight(.semibold))
|
|
.padding(EdgeInsets(top: 1, leading: 4, bottom: 1, trailing: 4))
|
|
.hidden()
|
|
.background {
|
|
Color(UIColor.lightGray)
|
|
.cornerRadius(2)
|
|
.inverseMask {
|
|
content
|
|
.font(.caption.weight(.semibold))
|
|
.padding(EdgeInsets(top: 1, leading: 4, bottom: 1, trailing: 4))
|
|
}
|
|
}
|
|
} else {
|
|
content
|
|
.font(.caption.weight(.semibold))
|
|
.foregroundColor(Color(UIColor.lightGray))
|
|
.padding(EdgeInsets(top: 1, leading: 4, bottom: 1, trailing: 4))
|
|
.overlay(
|
|
RoundedRectangle(cornerRadius: 2)
|
|
.stroke(Color(UIColor.lightGray), lineWidth: 1)
|
|
)
|
|
}
|
|
}
|
|
}
|