| 1234567891011121314151617 |
- import Foundation
- import SwiftUI
- extension Binding where Value == Int {
- func doubleBinding() -> Binding<Double> {
- Binding<Double>(
- get: { Double(self.wrappedValue) },
- set: { self.wrappedValue = Int($0) }
- )
- }
- }
- extension Color {
- static let bgDarkBlue = Color("Background_DarkBlue")
- static let bgDarkerDarkBlue = Color("Background_DarkerDarkBlue")
- }
|