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
| type ObjectKey = keyof any | |
| type DynamicColorStyles = Record<string, string> | |
| type ColorFactory = string | (() => string) |
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 PlaygroundSupport | |
| class UITestView: UIView { | |
| init() { | |
| super.init(frame: CGRect.zero) | |
| let square = UIView() | |
| square.backgroundColor = .gray |
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 | |
| class RNAsyncStorage { | |
| private static let RCTStorageDirectory = "RCTAsyncLocalStorage_V1" | |
| private static let RCTManifestFileName = "manifest.json" | |
| private static func getStorageDirectory() -> URL? { | |
| return FileManager.default | |
| .urls( |