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
extension URL { | |
// private var resourceIsDirectory: Bool? { | |
// (try? resourceValues(forKeys: [.isDirectoryKey]))?.isDirectory | |
// } | |
var exists: Bool { | |
// resourceIsDirectory != nil | |
// (try? resourceValues(forKeys: [.isDirectoryKey]))?.isDirectory != nil | |
// (try? resourceValues(forKeys: [.isRegularFileKey]))?.isRegularFile != nil | |
isFile || isDirectory |
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 | |
struct Chart: View { | |
var function: (Double) -> Double | |
var by: Double | |
private let height = 20.0 | |
private var data: [Double] { | |
stride(from: -3.0, to: 3.0 + by , by: by) |
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 | |
struct TestColorValues: View { | |
var color: Color | |
@Environment(\.self) private var environment | |
private var resolved: Color.Resolved { | |
color.resolve(in: environment) | |
} |
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 | |
struct TestDragGesture: View { | |
@State private var location = CGPoint(x: 150, y: 150) | |
@State private var startLocation: CGPoint? | |
var body: some View { | |
Circle() | |
.fill(.orange) | |
.frame(width: 200) |
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 | |
struct TestSymbolTransition: View { | |
@State private var value = true | |
var body: some View { | |
VStack { | |
Button { | |
value.toggle() |
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
extension GroupBoxStyle where Self == MusicGroupBoxStyle { | |
static var music: MusicGroupBoxStyle { .init() } | |
//static var music: Self { Self() } | |
} |
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 | |
struct BackgroundCheckeredPattern<Content: View>: View { | |
var size: CGFloat = 10 | |
@ViewBuilder var content: () -> Content | |
var body: some View { | |
ZStack { | |
CheckeredPattern(size: size) | |
.edgesIgnoringSafeArea(.all) |
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 | |
import Throttler | |
struct TestDebounceTextField: View { | |
@State var debouncedText = "" | |
var body: some View { | |
VStack { | |
Text("\(debouncedText)") |