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 UIKit | |
| import PlaygroundSupport | |
| class DummyVC: UIViewController { | |
| let margin: CGFloat = 20 | |
| override func viewDidLoad() { | |
| view.backgroundColor = .green | |
| view.addSubview(pipView) |
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 UIKit | |
| enum FolderSizeCalculatorError: Error { | |
| case urlUnreachableOrNotDirectory | |
| case failToEnumerateDirectoryContent | |
| case failToGenerateString | |
| } | |
| class FolderSizeCalculator { | |
| private let fileManager: FileManager |
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
| ------------------------------------- | |
| Translated Report (Full Report Below) | |
| ------------------------------------- | |
| Process: Xcode [4064] | |
| Path: /Applications/Xcode.app/Contents/MacOS/Xcode | |
| Identifier: com.apple.dt.Xcode | |
| Version: 15.4 (22622) | |
| Build Info: IDEApplication-22622000000000000~2 (15F31d) | |
| App Item ID: 497799835 |
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 SlideAwayPlayground: View { | |
| @State private var progress: Float = 0.5 | |
| @State private var direction: Float = 1.0 | |
| @State private var selectedImage = 0 | |
| @State private var showGuides = true | |
| @State private var animateProgress = false | |
| @State private var animationSpeed: Double = 2.0 | |
OlderNewer