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 | |
| // MARK: - Component | |
| fileprivate struct SplitViewConfig { | |
| let topDetentRatio: CGFloat | |
| let bottomDetentRatio: CGFloat | |
| let elasticThreshold: CGFloat | |
| let elasticResistance: CGFloat | |
| let snapThreshold: CGFloat |
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
| // JaredUI.Sheet.swift | |
| // JaredUI | |
| // | |
| // Created by Jared Davidson on 1/28/25. | |
| import SwiftUI | |
| import UIKit | |
| public enum JaredUI { } |
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 | |
| import SwiftUI | |
| import UIKit | |
| import os | |
| extension UINavigationController: UIGestureRecognizerDelegate { | |
| override open func viewDidLoad() { | |
| super.viewDidLoad() | |
| self.hidesBarsOnSwipe = false | |
| setupFullWidthBackGesture() |
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
| // | |
| // NetworkSpeedManager.swift | |
| // Archetapp | |
| // | |
| // Created by Jared on 10/15/20. | |
| // Copyright © 2020 Archetapp. All rights reserved. | |
| // | |
| import Foundation | |
| import UIKit |