mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
70c089e696
Fix environment objects Hide video player placeholder on tvOS Queue improvements
17 lines
617 B
Swift
17 lines
617 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
extension View {
|
|
func borderTop(height: Double, color: Color = Color(white: 0.7, opacity: 1)) -> some View {
|
|
verticalEdgeBorder(.top, height: height, color: color)
|
|
}
|
|
|
|
func borderBottom(height: Double, color: Color = Color(white: 0.7, opacity: 1)) -> some View {
|
|
verticalEdgeBorder(.bottom, height: height, color: color)
|
|
}
|
|
|
|
private func verticalEdgeBorder(_ edge: Alignment, height: Double, color: Color) -> some View {
|
|
overlay(Rectangle().frame(width: nil, height: height, alignment: .top).foregroundColor(color), alignment: edge)
|
|
}
|
|
}
|