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 ContentView: View { | |
let items = [0, 1, 2, 3, 4] | |
@State private var position = ScrollPosition(idType: Int.self) | |
@State private var showPage: Bool = true | |
let height = 300.0 | |
let width = 300.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 SwiftUI | |
#if canImport(UIKit) | |
import UIKit | |
public typealias PlatformImage = UIImage | |
#elseif canImport(AppKit) | |
import AppKit | |
public typealias PlatformImage = NSImage | |
#endif |
OlderNewer