This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // SafeVStack.swift | |
| // | |
| // | |
| // Created by Juan Carlos on 31/01/21. | |
| // | |
| import SwiftUI | |
| @available(iOS 13.0, *) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // SafeHStack.swift | |
| // | |
| // | |
| // Created by Juan Carlos on 31/01/21. | |
| // | |
| import SwiftUI | |
| @available(iOS 13.0, *) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| precedencegroup HostPrecedence { | |
| higherThan: MultiplicationPrecedence | |
| } | |
| precedencegroup PathPrecedence { | |
| higherThan: HostPrecedence | |
| } | |
| infix operator ⠅╱╱: HostPrecedence |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // TokenAuthenticator.swift | |
| // | |
| // Created by Juan Carlos on 04/06/20. | |
| // | |
| import Vapor | |
| import Fluent | |
| protocol OAuth { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defaults write bluetoothaudiod "Enable AAC codec" -bool true | |
| defaults write bluetoothaudiod "AAC Bitrate" 320 | |
| sudo defaults write bluetoothaudiod "Enable AAC codec" -bool true | |
| sudo defaults write bluetoothaudiod "AAC Bitrate" 320 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SwiftUI | |
| public struct RoundedCorners: View { | |
| public var color: Color = .white | |
| public var topLeft: CGFloat = 0.0 | |
| public var topRight: CGFloat = 0.0 | |
| public var bottomLeft: CGFloat = 0.0 | |
| public var bottomRight: CGFloat = 0.0 | |
| public init( |
OlderNewer