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 OSLog | |
| /// A collection view that displays a simple scrolling list of SwiftUI items. | |
| /// | |
| /// The collection view content should be a simple column, displaying SwiftUI items. The collection view items (particularly heights, | |
| /// because widths are already always full width) should automatically always scale to the SwiftUI item content. | |
| /// | |
| /// A lot of this is reusable on iOS. But on macOS, we can resize the window to make the collection view respond to size changes, | |
| /// so initial experimentation is only on macOS. |
OlderNewer