metatext-app-ios-iphone-ipad/Views/ViewConstants.swift

19 lines
454 B
Swift
Raw Normal View History

2020-09-29 03:14:43 +02:00
// Copyright © 2020 Metabolist. All rights reserved.
import SwiftUI
extension CGFloat {
static let defaultSpacing: Self = 8
static let compactSpacing: Self = 4
static let defaultCornerRadius: Self = 8
2020-10-04 10:39:54 +02:00
static let hairline = 1 / UIScreen.main.scale
2020-09-29 03:14:43 +02:00
}
2020-09-29 03:32:28 +02:00
extension TimeInterval {
static let defaultAnimationDuration: Self = 0.5
}
2020-09-29 03:14:43 +02:00
extension UIImage {
static let highlightedButtonBackground = UIColor(white: 0, alpha: 0.5).image()
}