import Defaults import Foundation import SwiftUI struct Buffering: View { var reason = "Buffering stream...".localized() var state: String? @ObservedObject private var player = PlayerModel.shared @Default(.playerControlsLayout) private var regularPlayerControlsLayout @Default(.fullScreenPlayerControlsLayout) private var fullScreenPlayerControlsLayout var playerControlsLayout: PlayerControlsLayout { player.playingFullScreen ? fullScreenPlayerControlsLayout : regularPlayerControlsLayout } var body: some View { VStack(spacing: 2) { ProgressView() #if os(macOS) .scaleEffect(0.4) #else .scaleEffect(0.7) #endif .frame(maxHeight: 14) .progressViewStyle(.circular) Text(reason) .font(.system(size: playerControlsLayout.timeFontSize)) if let state { Text(state) .font(.system(size: playerControlsLayout.bufferingStateFontSize).monospacedDigit()) } } .padding(8) .modifier(ControlBackgroundModifier()) .clipShape(RoundedRectangle(cornerRadius: 4)) .foregroundColor(.secondary) } } struct Buffering_Previews: PreviewProvider { static var previews: some View { Buffering(state: "100% (2.95s)") } }