mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 22:00:31 +05:30
15 lines
297 B
Swift
15 lines
297 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
struct Constants {
|
|
static let yatteeProtocol = "yattee://"
|
|
static let overlayAnimation = Animation.linear(duration: 0.2)
|
|
static var progressViewScale: Double {
|
|
#if os(macOS)
|
|
0.4
|
|
#else
|
|
0.6
|
|
#endif
|
|
}
|
|
}
|